@eeacms/volto-eea-design-system 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (263) hide show
  1. package/.coverage.babel.config.js +13 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.md +50 -0
  3. package/.github/ISSUE_TEMPLATE/feature_request.md +50 -0
  4. package/.github/workflows/node.js.yml +59 -0
  5. package/.prettierignore +4 -0
  6. package/.project.eslintrc.js +45 -0
  7. package/.release-it.json +17 -0
  8. package/.storybook/manager.js +15 -0
  9. package/CHANGELOG.md +1025 -0
  10. package/DEVELOP.md +51 -0
  11. package/LICENSE.md +9 -0
  12. package/README.md +196 -0
  13. package/bootstrap +41 -0
  14. package/cypress.json +17 -0
  15. package/jest-addon.config.js +36 -0
  16. package/locales/volto.pot +0 -0
  17. package/mockups/README.md +1 -0
  18. package/package.json +49 -0
  19. package/razzle.extend.js +23 -0
  20. package/src/helpers/index.js +2 -0
  21. package/src/helpers/useClickOutside.js +30 -0
  22. package/src/helpers/usePrevious.js +9 -0
  23. package/src/i18n.js +180 -0
  24. package/src/index.js +6 -0
  25. package/src/semantic.less +262 -0
  26. package/src/ui/Avatar/Avatar.jsx +32 -0
  27. package/src/ui/Avatar/Avatar.stories.jsx +61 -0
  28. package/src/ui/AvatarGrid/AvatarGrid.jsx +49 -0
  29. package/src/ui/AvatarGrid/AvatarGrid.stories.jsx +66 -0
  30. package/src/ui/Banner/Banner.jsx +59 -0
  31. package/src/ui/Banner/Banner.stories.jsx +121 -0
  32. package/src/ui/Blockquote/Blockquote.jsx +16 -0
  33. package/src/ui/Blockquote/Blockquote.stories.jsx +48 -0
  34. package/src/ui/Breadcrumbs/Breadcrumb.stories.jsx +76 -0
  35. package/src/ui/Breadcrumbs/Breadcrumbs.jsx +67 -0
  36. package/src/ui/Breadcrumbs/Breadcrumbs.stories.jsx +30 -0
  37. package/src/ui/Button/Button.stories.jsx +169 -0
  38. package/src/ui/Divider/Divider.jsx +7 -0
  39. package/src/ui/Footer/Contact.jsx +28 -0
  40. package/src/ui/Footer/Footer.jsx +52 -0
  41. package/src/ui/Footer/FooterActions.jsx +22 -0
  42. package/src/ui/Footer/FooterHeader.jsx +10 -0
  43. package/src/ui/Footer/FooterSites.jsx +33 -0
  44. package/src/ui/Footer/Social.jsx +25 -0
  45. package/src/ui/Footer/SubFooter.jsx +9 -0
  46. package/src/ui/FormFieldWrapper/FormFieldWrapper.jsx +51 -0
  47. package/src/ui/Header/Header.jsx +224 -0
  48. package/src/ui/Header/HeaderMenuPopUp.js +79 -0
  49. package/src/ui/Header/HeaderSearchPopUp.js +33 -0
  50. package/src/ui/InpageNavigation/InpageNavigation.jsx +61 -0
  51. package/src/ui/InpageNavigation/InpageNavigation.stories.jsx +166 -0
  52. package/src/ui/KeyContent/KeyContent.jsx +22 -0
  53. package/src/ui/KeyContent/KeyContent.stories.jsx +62 -0
  54. package/src/ui/Loader/Loader.stories.jsx +45 -0
  55. package/src/ui/Logo/Logo.jsx +31 -0
  56. package/src/ui/Popup/Popup.stories.jsx +97 -0
  57. package/src/ui/PublicationCard/PublicationCard.jsx +27 -0
  58. package/src/ui/PublicationCard/PublicationCard.stories.jsx +69 -0
  59. package/src/ui/Pullquote/Pullquote.jsx +44 -0
  60. package/src/ui/Pullquote/Pullquote.stories.jsx +101 -0
  61. package/src/ui/RelatedContent/RelatedContent.jsx +90 -0
  62. package/src/ui/RelatedContent/RelatedContent.stories.jsx +80 -0
  63. package/src/ui/Segment/Segment.stories.jsx +163 -0
  64. package/src/ui/Tag/Tag.jsx +13 -0
  65. package/src/ui/Tag/Tag.stories.jsx +21 -0
  66. package/src/ui/TagList/TagList.jsx +23 -0
  67. package/src/ui/TagList/TagList.stories.jsx +63 -0
  68. package/src/ui/Testimonial/Testimonial.jsx +53 -0
  69. package/src/ui/Testimonial/Testimonial.stories.jsx +51 -0
  70. package/src/ui/Timeline/Timeline.jsx +44 -0
  71. package/src/ui/Timeline/Timeline.stories.jsx +322 -0
  72. package/src/ui/index.js +31 -0
  73. package/templates/eea.hbs +50 -0
  74. package/theme/theme.config +122 -0
  75. package/theme/theme.less +64 -0
  76. package/theme/themes/eea/assets/images/EEA_Logo_Vertical.png +0 -0
  77. package/theme/themes/eea/assets/images/Footer/EEALogo.png +0 -0
  78. package/theme/themes/eea/assets/images/Footer/EULogo.png +0 -0
  79. package/theme/themes/eea/assets/images/Footer/Extras/Logo1.png +0 -0
  80. package/theme/themes/eea/assets/images/Footer/Extras/Logo10.png +0 -0
  81. package/theme/themes/eea/assets/images/Footer/Extras/Logo2.png +0 -0
  82. package/theme/themes/eea/assets/images/Footer/Extras/Logo3.png +0 -0
  83. package/theme/themes/eea/assets/images/Footer/Extras/Logo4.png +0 -0
  84. package/theme/themes/eea/assets/images/Footer/Extras/Logo5.png +0 -0
  85. package/theme/themes/eea/assets/images/Footer/Extras/Logo6.png +0 -0
  86. package/theme/themes/eea/assets/images/Footer/Extras/Logo7.png +0 -0
  87. package/theme/themes/eea/assets/images/Footer/Extras/Logo8.png +0 -0
  88. package/theme/themes/eea/assets/images/Footer/Extras/Logo9.png +0 -0
  89. package/theme/themes/eea/assets/images/Footer/Extras/abstract-visual.svg +32 -0
  90. package/theme/themes/eea/assets/images/Footer/Extras/footervisual.svg +1755 -0
  91. package/theme/themes/eea/assets/images/Footer/Vector1.png +0 -0
  92. package/theme/themes/eea/assets/images/Footer/Vector2.png +0 -0
  93. package/theme/themes/eea/assets/images/Header/EeaLogo.png +0 -0
  94. package/theme/themes/eea/assets/images/Header/Vector.png +0 -0
  95. package/theme/themes/eea/assets/images/Header/close-line.svg +1 -0
  96. package/theme/themes/eea/assets/images/Header/close.png +0 -0
  97. package/theme/themes/eea/assets/images/Header/down-arrow.png +0 -0
  98. package/theme/themes/eea/assets/images/Header/eea-logo.svg +14 -0
  99. package/theme/themes/eea/assets/images/Header/eea.png +0 -0
  100. package/theme/themes/eea/assets/images/Header/eeaIcon.png +0 -0
  101. package/theme/themes/eea/assets/images/Header/global-line.svg +1 -0
  102. package/theme/themes/eea/assets/images/Header/globeIcon.png +0 -0
  103. package/theme/themes/eea/assets/images/Header/hamburgerMenuIcon.png +0 -0
  104. package/theme/themes/eea/assets/images/Header/menu-left-arrow.svg +3 -0
  105. package/theme/themes/eea/assets/images/Header/menu-line.svg +1 -0
  106. package/theme/themes/eea/assets/images/Header/search-line.svg +1 -0
  107. package/theme/themes/eea/assets/images/Header/search.png +0 -0
  108. package/theme/themes/eea/assets/images/Header/searchIcon.png +0 -0
  109. package/theme/themes/eea/assets/images/arrow-down.svg +10 -0
  110. package/theme/themes/eea/assets/images/avatar.png +0 -0
  111. package/theme/themes/eea/assets/images/banner.png +0 -0
  112. package/theme/themes/eea/assets/images/eea-logo.png +0 -0
  113. package/theme/themes/eea/assets/images/eea_icon.png +0 -0
  114. package/theme/themes/eea/assets/images/europe-flag.svg +4 -0
  115. package/theme/themes/eea/assets/images/home-icon.svg +3 -0
  116. package/theme/themes/eea/assets/images/loaderImage.png +0 -0
  117. package/theme/themes/eea/assets/images/mega-menu-arrow.svg +3 -0
  118. package/theme/themes/eea/assets/logo/EEA-Logo-White-2.svg +9 -0
  119. package/theme/themes/eea/assets/logo/EEA-Logo-white.svg +9 -0
  120. package/theme/themes/eea/assets/logo/EIONETLogo.png +0 -0
  121. package/theme/themes/eea/assets/logo/bise.svg +47 -0
  122. package/theme/themes/eea/assets/logo/cca.svg +20 -0
  123. package/theme/themes/eea/assets/logo/copernicus.svg +62 -0
  124. package/theme/themes/eea/assets/logo/energy.svg +77 -0
  125. package/theme/themes/eea/assets/logo/fise.svg +37 -0
  126. package/theme/themes/eea/assets/logo/freshwater.svg +48 -0
  127. package/theme/themes/eea/assets/logo/industry.svg +40 -0
  128. package/theme/themes/eea/assets/logo/insitu.svg +43 -0
  129. package/theme/themes/eea/assets/logo/ipchem.svg +23 -0
  130. package/theme/themes/eea/assets/logo/marine.svg +63 -0
  131. package/theme/themes/eea/collections/breadcrumb.overrides +44 -0
  132. package/theme/themes/eea/collections/breadcrumb.variables +49 -0
  133. package/theme/themes/eea/collections/form.overrides +56 -0
  134. package/theme/themes/eea/collections/form.variables +211 -0
  135. package/theme/themes/eea/collections/grid.overrides +17 -0
  136. package/theme/themes/eea/collections/grid.variables +103 -0
  137. package/theme/themes/eea/collections/menu.overrides +84 -0
  138. package/theme/themes/eea/collections/menu.variables +471 -0
  139. package/theme/themes/eea/collections/message.overrides +34 -0
  140. package/theme/themes/eea/collections/message.variables +142 -0
  141. package/theme/themes/eea/collections/table.overrides +30 -0
  142. package/theme/themes/eea/collections/table.variables +249 -0
  143. package/theme/themes/eea/definitions/elements/icon.less +499 -0
  144. package/theme/themes/eea/elements/button.overrides +199 -0
  145. package/theme/themes/eea/elements/button.variables +405 -0
  146. package/theme/themes/eea/elements/container.overrides +98 -0
  147. package/theme/themes/eea/elements/container.variables +66 -0
  148. package/theme/themes/eea/elements/divider.overrides +17 -0
  149. package/theme/themes/eea/elements/divider.variables +53 -0
  150. package/theme/themes/eea/elements/flag.overrides +1235 -0
  151. package/theme/themes/eea/elements/flag.variables +13 -0
  152. package/theme/themes/eea/elements/header.overrides +205 -0
  153. package/theme/themes/eea/elements/header.variables +151 -0
  154. package/theme/themes/eea/elements/icon.overrides +5589 -0
  155. package/theme/themes/eea/elements/icon.variables +95 -0
  156. package/theme/themes/eea/elements/image.overrides +3 -0
  157. package/theme/themes/eea/elements/image.variables +44 -0
  158. package/theme/themes/eea/elements/input.overrides +83 -0
  159. package/theme/themes/eea/elements/input.variables +104 -0
  160. package/theme/themes/eea/elements/label.overrides +49 -0
  161. package/theme/themes/eea/elements/label.variables +267 -0
  162. package/theme/themes/eea/elements/list.overrides +28 -0
  163. package/theme/themes/eea/elements/list.variables +233 -0
  164. package/theme/themes/eea/elements/loader.overrides +3 -0
  165. package/theme/themes/eea/elements/loader.variables +73 -0
  166. package/theme/themes/eea/elements/placeholder.overrides +3 -0
  167. package/theme/themes/eea/elements/placeholder.variables +55 -0
  168. package/theme/themes/eea/elements/rail.overrides +3 -0
  169. package/theme/themes/eea/elements/rail.variables +34 -0
  170. package/theme/themes/eea/elements/reveal.overrides +3 -0
  171. package/theme/themes/eea/elements/reveal.variables +18 -0
  172. package/theme/themes/eea/elements/segment.overrides +8 -0
  173. package/theme/themes/eea/elements/segment.variables +154 -0
  174. package/theme/themes/eea/elements/step.overrides +18 -0
  175. package/theme/themes/eea/elements/step.variables +130 -0
  176. package/theme/themes/eea/extras/avatar.less +97 -0
  177. package/theme/themes/eea/extras/avatar.variables +34 -0
  178. package/theme/themes/eea/extras/avatarGrid.less +43 -0
  179. package/theme/themes/eea/extras/avatarGrid.variables +20 -0
  180. package/theme/themes/eea/extras/banner.less +213 -0
  181. package/theme/themes/eea/extras/banner.variables +77 -0
  182. package/theme/themes/eea/extras/blockquote.less +89 -0
  183. package/theme/themes/eea/extras/blockquote.variables +35 -0
  184. package/theme/themes/eea/extras/custom.overrides +0 -0
  185. package/theme/themes/eea/extras/custom.variables +0 -0
  186. package/theme/themes/eea/extras/divider.less +14 -0
  187. package/theme/themes/eea/extras/divider.variables +9 -0
  188. package/theme/themes/eea/extras/footer.less +273 -0
  189. package/theme/themes/eea/extras/footer.variables +109 -0
  190. package/theme/themes/eea/extras/header.less +691 -0
  191. package/theme/themes/eea/extras/header.variables +149 -0
  192. package/theme/themes/eea/extras/inpageNavigation.less +57 -0
  193. package/theme/themes/eea/extras/inpageNavigation.variables +30 -0
  194. package/theme/themes/eea/extras/keyContent.less +36 -0
  195. package/theme/themes/eea/extras/keyContent.variables +18 -0
  196. package/theme/themes/eea/extras/main.overrides +31 -0
  197. package/theme/themes/eea/extras/main.variables +33 -0
  198. package/theme/themes/eea/extras/publicationCard.less +62 -0
  199. package/theme/themes/eea/extras/publicationCard.variables +24 -0
  200. package/theme/themes/eea/extras/pullquote.less +76 -0
  201. package/theme/themes/eea/extras/pullquote.variables +34 -0
  202. package/theme/themes/eea/extras/select.overrides +0 -0
  203. package/theme/themes/eea/extras/select.variables +0 -0
  204. package/theme/themes/eea/extras/tag.less +37 -0
  205. package/theme/themes/eea/extras/tag.variables +22 -0
  206. package/theme/themes/eea/extras/tagList.less +50 -0
  207. package/theme/themes/eea/extras/tagList.variables +13 -0
  208. package/theme/themes/eea/extras/testimonial.less +28 -0
  209. package/theme/themes/eea/extras/testimonial.variables +13 -0
  210. package/theme/themes/eea/extras/timeline.less +114 -0
  211. package/theme/themes/eea/extras/timeline.variables +40 -0
  212. package/theme/themes/eea/globals/reset.overrides +454 -0
  213. package/theme/themes/eea/globals/reset.variables +6 -0
  214. package/theme/themes/eea/globals/site.overrides +27 -0
  215. package/theme/themes/eea/globals/site.variables +1135 -0
  216. package/theme/themes/eea/modules/accordion.overrides +83 -0
  217. package/theme/themes/eea/modules/accordion.variables +114 -0
  218. package/theme/themes/eea/modules/chatroom.overrides +3 -0
  219. package/theme/themes/eea/modules/chatroom.variables +3 -0
  220. package/theme/themes/eea/modules/checkbox.overrides +67 -0
  221. package/theme/themes/eea/modules/checkbox.variables +194 -0
  222. package/theme/themes/eea/modules/dimmer.overrides +3 -0
  223. package/theme/themes/eea/modules/dimmer.variables +58 -0
  224. package/theme/themes/eea/modules/dropdown.overrides +53 -0
  225. package/theme/themes/eea/modules/dropdown.variables +390 -0
  226. package/theme/themes/eea/modules/embed.overrides +3 -0
  227. package/theme/themes/eea/modules/embed.variables +53 -0
  228. package/theme/themes/eea/modules/modal.overrides +3 -0
  229. package/theme/themes/eea/modules/modal.variables +193 -0
  230. package/theme/themes/eea/modules/nag.overrides +3 -0
  231. package/theme/themes/eea/modules/nag.variables +74 -0
  232. package/theme/themes/eea/modules/popup.overrides +83 -0
  233. package/theme/themes/eea/modules/popup.variables +153 -0
  234. package/theme/themes/eea/modules/progress.overrides +3 -0
  235. package/theme/themes/eea/modules/progress.variables +113 -0
  236. package/theme/themes/eea/modules/rating.overrides +74 -0
  237. package/theme/themes/eea/modules/rating.variables +103 -0
  238. package/theme/themes/eea/modules/search.overrides +3 -0
  239. package/theme/themes/eea/modules/search.variables +163 -0
  240. package/theme/themes/eea/modules/shape.overrides +3 -0
  241. package/theme/themes/eea/modules/shape.variables +40 -0
  242. package/theme/themes/eea/modules/sidebar.overrides +3 -0
  243. package/theme/themes/eea/modules/sidebar.variables +45 -0
  244. package/theme/themes/eea/modules/sticky.overrides +3 -0
  245. package/theme/themes/eea/modules/sticky.variables +7 -0
  246. package/theme/themes/eea/modules/tab.overrides +13 -0
  247. package/theme/themes/eea/modules/tab.variables +17 -0
  248. package/theme/themes/eea/modules/transition.overrides +1087 -0
  249. package/theme/themes/eea/modules/transition.variables +10 -0
  250. package/theme/themes/eea/modules/video.overrides +3 -0
  251. package/theme/themes/eea/modules/video.variables +16 -0
  252. package/theme/themes/eea/views/ad.overrides +3 -0
  253. package/theme/themes/eea/views/ad.variables +13 -0
  254. package/theme/themes/eea/views/card.overrides +73 -0
  255. package/theme/themes/eea/views/card.variables +237 -0
  256. package/theme/themes/eea/views/comment.overrides +3 -0
  257. package/theme/themes/eea/views/comment.variables +98 -0
  258. package/theme/themes/eea/views/feed.overrides +3 -0
  259. package/theme/themes/eea/views/feed.variables +141 -0
  260. package/theme/themes/eea/views/item.overrides +8 -0
  261. package/theme/themes/eea/views/item.variables +157 -0
  262. package/theme/themes/eea/views/statistic.overrides +19 -0
  263. package/theme/themes/eea/views/statistic.variables +105 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1025 @@
1
+ ### Changelog
2
+
3
+ All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4
+
5
+ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
+
7
+ #### [0.2.1](https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1)
8
+
9
+ - refactor(loader): Revert changes to semantic ui / volto defaults [`#142`](https://github.com/eea/volto-eea-design-system/pull/142)
10
+ - 1.10 release #140 [`#141`](https://github.com/eea/volto-eea-design-system/pull/141)
11
+ - Autobuild of docusaurus docs [`d632472`](https://github.com/eea/volto-eea-design-system/commit/d63247239c8150075363871616652a99148509b0)
12
+ - Release 0.2.1 [`9f89d9d`](https://github.com/eea/volto-eea-design-system/commit/9f89d9d60ef259c5b5a7300ccde1e524eb4fa4d7)
13
+ - Autobuild of docusaurus docs [`af3f50d`](https://github.com/eea/volto-eea-design-system/commit/af3f50d17ad8266329c1bccd18d638f2617d722d)
14
+ - cleanup(loader): Remove useless HTML [`d1d180c`](https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22)
15
+ - fix(version): Switch to 2.0.0.alpha.1 [`83b8b8e`](https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9)
16
+ - Autobuild of docusaurus docs [`7151ade`](https://github.com/eea/volto-eea-design-system/commit/7151ade5097e4164c38a99a21e473953aba3fb9a)
17
+
18
+ #### [0.2.0](https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0)
19
+
20
+ > 4 April 2022
21
+
22
+ - [R2] Card refactored as an [R3] [`#123`](https://github.com/eea/volto-eea-design-system/pull/123)
23
+ - feat(popup/label): Block styles [`#138`](https://github.com/eea/volto-eea-design-system/pull/138)
24
+ - Develop tags [`#130`](https://github.com/eea/volto-eea-design-system/pull/130)
25
+ - 1.10 release #140 [`88d3339`](https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f)
26
+ - change(package): bump release version to 1.10.0 [`7e984c1`](https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621)
27
+ - fix(buttons,toggles): border and background color when active 147629 #139 [`ea36f31`](https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba)
28
+ - undo changes to Header.jsx committed wrongly in 4b6ab [`bfc4c51`](https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0)
29
+ - fix(buttons): border set on basic buttons appearing on svg elements of Volto UI [`69ca73f`](https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951)
30
+ - fix(checkboxes): background color when they are toggles [`4b6ab67`](https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449)
31
+ - Autobuild of docusaurus docs [`a24d846`](https://github.com/eea/volto-eea-design-system/commit/a24d8466f991095dadd4f292123fafa1f3b6c44b)
32
+ - feat(label): Handle slate links and footnotes [`f382431`](https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068)
33
+ - Autobuild of docusaurus docs [`e6ee181`](https://github.com/eea/volto-eea-design-system/commit/e6ee1813a5d9fb98741a1eccc891475a7a641dc1)
34
+ - Autobuild of docusaurus docs [`892262c`](https://github.com/eea/volto-eea-design-system/commit/892262c5269df4769b96cdbded440fa35320fe65)
35
+ - fix(label): Zotero/Footnotes inside label [`0ee4d58`](https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786)
36
+ - Autobuild of docusaurus docs [`66fe3e9`](https://github.com/eea/volto-eea-design-system/commit/66fe3e987f78ca6e9e154594e8af04618b4f7c98)
37
+ - Autobuild of docusaurus docs [`f6ae249`](https://github.com/eea/volto-eea-design-system/commit/f6ae249acd23b7e4b1a98dbc3b4fe9536a5dcc8c)
38
+ - Update 0-intro.md [`af75f81`](https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924)
39
+ - Autobuild of docusaurus docs [`191b708`](https://github.com/eea/volto-eea-design-system/commit/191b7082a8a08e35bfbb40aa643674fca424b965)
40
+ - Update 0-intro.md [`93a0732`](https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4)
41
+ - refactor(card): add class inverted for default card [`919a56e`](https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f)
42
+ - Autobuild of docusaurus docs [`6c36d9e`](https://github.com/eea/volto-eea-design-system/commit/6c36d9e7087217896cbc168382cbe80ea3f617bb)
43
+ - change(banner): added background gradient, share popup, metadata show and hide #136 [`2f5dcca`](https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518)
44
+ - refactor(banner): add and adjust remix icon for banner action [`1bf3ffa`](https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56)
45
+ - Autobuild of docusaurus docs [`dbc3ace`](https://github.com/eea/volto-eea-design-system/commit/dbc3acef3d309418deebe0d8442d506de44e0431)
46
+ - style(tag): remove comments [`501fcdf`](https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286)
47
+ - refactor(banner): update gradient [`570ee1e`](https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13)
48
+ - refactor(Banner):add type class to metadata field and apply styles to it [`86a2866`](https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23)
49
+ - refactor(banner): replace px with rem and adjust share popup padding [`a568329`](https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c)
50
+ - refactor(banner): share items display flex on desktop [`3ff8684`](https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b)
51
+ - fix(less variables):change font family [`e4bca9e`](https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1)
52
+ - perf(eol): lf fix [`ecf474f`](https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125)
53
+ - refactor(Banner):change banner's image wrapper implementation [`9153dd1`](https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc)
54
+ - refactor(tagList): update story to not use tag color classes [`8b5b61b`](https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9)
55
+ - refactor(tag): remove classes and actions that add background color [`ce9b6f9`](https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406)
56
+ - fix(Banner): prop types fix [`a270e5b`](https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3)
57
+ - refactor(Banner):minor bug fix [`ff8c352`](https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd)
58
+ - refactor(Banner): add metadata field sub component [`327b7e7`](https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5)
59
+ - refactor(Banner):add banner share pop up in banner story [`c9688b2`](https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234)
60
+ - perf(eol): unix eol [`328ef2c`](https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7)
61
+ - refactor(card): remove card border [`bc77739`](https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb)
62
+ - refactor(card): align cards and images, update less variables [`d47c978`](https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98)
63
+ - refactor(less variables):change tag list styles [`8670087`](https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b)
64
+ - refactor(less variables): change tag list mobile view [`fcded3d`](https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13)
65
+ - fix(storybook):minor bug fix [`9fc53bc`](https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c)
66
+ - fix(card) : add control for image url in storybook [`b28e530`](https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1)
67
+ - refactor(tag): changes color metallicBlue to bottleGreen [`e4b68ac`](https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c)
68
+ - style(card) : add lint and prettier changes [`9d9a773`](https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156)
69
+ - feat(card) : add new default card color-schme [`965adea`](https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75)
70
+ - reafactor(taglist): fixes tags root class [`7d09959`](https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53)
71
+ - style(tag): stylelint and prettier changes [`08b6386`](https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063)
72
+ - refactor(tag): splits Tags component to TagList and tag, changes default tags style [`78a5f8c`](https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445)
73
+ - fix(tag): fixes merged theme config [`eb30363`](https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1)
74
+ - refactor(tag): changes component name [`e1db068`](https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2)
75
+ - refactor(tags): removes hardcoded ':' [`ea58e86`](https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c)
76
+ - modifies tags title [`33c3714`](https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e)
77
+
78
+ #### [0.1.9](https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9)
79
+
80
+ > 25 March 2022
81
+
82
+ - feat(all): 1.9 release #124 [`0d3f6fb`](https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869)
83
+ - change(package): bump release version to 1.9.0 [`43a6e4b`](https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938)
84
+ - Autobuild of docusaurus docs [`c48b6eb`](https://github.com/eea/volto-eea-design-system/commit/c48b6eb94d292a319054457ccdaafad7419fc37e)
85
+ - refactor(breadcrumb): adjust font sizes and import remix divider #120 [`09a3a01`](https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b)
86
+ - prettier fixes [`d4b1c57`](https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41)
87
+ - change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template [`490a559`](https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e)
88
+ - Autobuild of docusaurus docs [`8888c5a`](https://github.com/eea/volto-eea-design-system/commit/8888c5a55865118d8ff56cbbeb7048af89ab45f6)
89
+ - fefactor(tab): add max width for tab items #118 [`716c408`](https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c)
90
+ - change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 [`ea138a1`](https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6)
91
+ - Autobuild of docusaurus docs [`43352b7`](https://github.com/eea/volto-eea-design-system/commit/43352b7dc13481bcc852a80f1cffd469c8049adf)
92
+ - fix(list): Fix TOC margin on 3rd level [`f17da79`](https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108)
93
+ - Autobuild of docusaurus docs [`b8dafeb`](https://github.com/eea/volto-eea-design-system/commit/b8dafeb89310b5321ac8de127c7b3e539e1e30e3)
94
+ - refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 [`fd740c9`](https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c)
95
+ - feat(callout): Align volto-slate callout with blockquote style [`9e0bb49`](https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058)
96
+ - Autobuild of docusaurus docs [`c4d36ef`](https://github.com/eea/volto-eea-design-system/commit/c4d36efe64e0a9f2800725630fee69d220f96b23)
97
+ - refactor(footer): updated visuals and gradients #117 [`e5c6d18`](https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32)
98
+ - Autobuild of docusaurus docs [`e9588cd`](https://github.com/eea/volto-eea-design-system/commit/e9588cdf2aa4eec0bc7037333977838af4598e36)
99
+ - change(scrollToTop): feature inpage navigation revamp #121 [`3cf20a8`](https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1)
100
+ - Autobuild of docusaurus docs [`f602a27`](https://github.com/eea/volto-eea-design-system/commit/f602a276219544307418adb2f5ca9d5dfc72428a)
101
+ - Hide breadcrumbs on homepage [`3e2f609`](https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5)
102
+ - perf(eol): unix eol [`85a3dc5`](https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370)
103
+ - Autobuild of docusaurus docs [`1e52721`](https://github.com/eea/volto-eea-design-system/commit/1e5272199a53814b1cf14f2327c7c20e569b521d)
104
+ - change(header): use 12px font size for mobile resolution dropdowns [`6dad0fa`](https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e)
105
+ - perf(eol): unix eol [`0077621`](https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741)
106
+ - Autobuild of docusaurus docs [`b3283ad`](https://github.com/eea/volto-eea-design-system/commit/b3283ad9f39b81d004206c5e2dc3efb450ea5925)
107
+ - perf(eol): unix eol [`9f1bb1c`](https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255)
108
+ - perf(eol): unix eol [`e2b19fe`](https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43)
109
+ - perf(eol): unix eol [`03dbc9b`](https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3)
110
+ - change(header): use viewport width for changing mobile text in header dropdowns [`5a7868e`](https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b)
111
+ - Autobuild of docusaurus docs [`d8b7f3c`](https://github.com/eea/volto-eea-design-system/commit/d8b7f3cadb9b081c0699c2fcf987aff04178fa51)
112
+ - End of line [`7f46fb7`](https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c)
113
+ - Add reversed option to Timeline grid [`7c90232`](https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264)
114
+ - doc(grid): update grid showcases [`83671a3`](https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e)
115
+ - bug(inpageNavigation): less layers structure fix [`b8d34fb`](https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81)
116
+ - refactor(footer): update visual and gradient [`764ec23`](https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713)
117
+ - Autobuild of docusaurus docs [`5478534`](https://github.com/eea/volto-eea-design-system/commit/5478534ecabe0aa7d727a36d3d54aa3c923bfef9)
118
+ - change(nav): added navDepth to 3 in order to enable mega menu integration [`c4f73fd`](https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76)
119
+ - style(pullquote): create variable for icon font size [`fea9b0a`](https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210)
120
+ - refactor(pullquote): adjust to the new figma design [`78e4606`](https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f)
121
+ - fix(inpageNavigation): restore hidden on top functionality [`c554e6e`](https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4)
122
+ - style(inpageNavigation): remove comment [`1aee011`](https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18)
123
+ - refactor(inpageNavigation): adjust to the new figma design [`4073acf`](https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac)
124
+ - refactor(inpageNavigation): Update to remix icons [`19a6061`](https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d)
125
+ - refactor(header): restore union dropdown after implementation [`a7029c5`](https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e)
126
+ - refactor(footer): update visual and mobile margins [`64f05af`](https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347)
127
+ - refactor(breadcrumb): adjust font sizes and import remix divider [`5fcabaf`](https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2)
128
+ - refactor(tab): add max width for tab items [`366d279`](https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085)
129
+ - refactor(less variables):change pullquote styles [`9ad94bb`](https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f)
130
+ - refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component [`6bce35f`](https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b)
131
+ - style(inpageNavigation) : add lint & prettier changes [`f8dd012`](https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759)
132
+ - fix(inpageNavigation) : add smooth scroll animation [`42f6564`](https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee)
133
+ - style(inpageNavigation) : lint changes [`3641d78`](https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b)
134
+ - style(inpageNavigation) : add less variables [`0699c70`](https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c)
135
+ - refactor(inpageNavigation) : move icon & text to be in column [`0953910`](https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55)
136
+
137
+ #### [0.1.8](https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8)
138
+
139
+ > 18 March 2022
140
+
141
+ - Release [`#113`](https://github.com/eea/volto-eea-design-system/pull/113)
142
+ - Release 1.8.0 [`fd6ba04`](https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a)
143
+ - Autobuild of docusaurus docs [`7f8b8a4`](https://github.com/eea/volto-eea-design-system/commit/7f8b8a4c33d503522bfbdeeb1f9a30bcb529abe9)
144
+ - change(docusaurus): content tweaks, inpage navigation section #112 [`b62d1b1`](https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89)
145
+ - docs(docusaurus): comment address on pr 112 [`6e4fe3b`](https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb)
146
+ - docs(docusaurus): color minor update [`13f9fda`](https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a)
147
+ - Autobuild of docusaurus docs [`ce93bf4`](https://github.com/eea/volto-eea-design-system/commit/ce93bf49467ff6d57d4b75b2f4a402f64a6534eb)
148
+ - Add divider content for metadata field in Banner [`f1e34bd`](https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860)
149
+ - docs(docusaurus): tabs and breadcrump update [`d0547e5`](https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694)
150
+ - docs(docusaurus): capitalization remove [`bf8fa44`](https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7)
151
+ - Autobuild of docusaurus docs [`5abb424`](https://github.com/eea/volto-eea-design-system/commit/5abb424788122db27c47d0f8c8a50b106d8b6c5a)
152
+ - fix(card): avoid long links from spilling outside of card body area [`95b8951`](https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d)
153
+ - Autobuild of docusaurus docs [`6d4886e`](https://github.com/eea/volto-eea-design-system/commit/6d4886e578d5ca9ff8f4334458e5e06c30d1f03e)
154
+ - change(typography): set heading sizes as detailed in docusaurus typography section [`189bf20`](https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf)
155
+ - Autobuild of docusaurus docs [`1a0ddaa`](https://github.com/eea/volto-eea-design-system/commit/1a0ddaa279f611b8576cbbc00a1fa56ebcaebb28)
156
+ - chore(docusaurus): fixed grid tablet breakpoint value [`c7fbc09`](https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40)
157
+ - docs(docusaurus): update [`1c04976`](https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840)
158
+ - doc(colours): add more content [`ec66248`](https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b)
159
+
160
+ #### [0.1.7](https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7)
161
+
162
+ > 15 March 2022
163
+
164
+ - Release [`#109`](https://github.com/eea/volto-eea-design-system/pull/109)
165
+ - Update package.json [`3dba28b`](https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0)
166
+ - Autobuild of docusaurus docs [`0d76184`](https://github.com/eea/volto-eea-design-system/commit/0d76184b59603f20dddc90cae9e728bd29b87e5d)
167
+ - refactor(all) icons, accordion, button and menu itml #108 [`52ed2ca`](https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d)
168
+ - Autobuild of docusaurus docs [`c266150`](https://github.com/eea/volto-eea-design-system/commit/c266150f90178f479fb895a54c463574cd727fc0)
169
+ - change(table): inherit header alignment instead of hard-coding values [`ebb5193`](https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd)
170
+ - Autobuild of docusaurus docs [`08e08fc`](https://github.com/eea/volto-eea-design-system/commit/08e08fce75522e37ee02cc33a35f3a4137e976df)
171
+ - change(storybook): segment stories now contain several elements [`98a7654`](https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d)
172
+ - bug(form): input min-width more specific to not break volto interface [`3f5b5d4`](https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11)
173
+ - refactor(menu): update paddings for tabs and pagination [`533a509`](https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e)
174
+ - refactor(accordion): import semantic icon for remix arrows [`9aa77d8`](https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf)
175
+ - feat(less): add global gap sizes [`3c83f20`](https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709)
176
+ - refactor(container): restore mobile width to auto [`2df184c`](https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74)
177
+ - docs(list): default list showcase [`8ded062`](https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1)
178
+ - docs(colors): corrections [`da64c4c`](https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28)
179
+ - refactor(button): update action button hover color [`bb09d71`](https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96)
180
+ - fix(menu): fix border overflow for tabs and pagination [`e88721f`](https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9)
181
+ - feat(icons): import remix css [`29967fb`](https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3)
182
+ - fix(accordion): responsive and accessibility issues [`c225935`](https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584)
183
+ - refactor(icons): add remix icons [`c4c1a92`](https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb)
184
+ - chore(docusaurus): docs delete [`5f9d733`](https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7)
185
+
186
+ #### [0.1.6](https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6)
187
+
188
+ > 11 March 2022
189
+
190
+ - Release [`#106`](https://github.com/eea/volto-eea-design-system/pull/106)
191
+ - Table Volto integration & blockquote cleanup (moved to theme) [`#103`](https://github.com/eea/volto-eea-design-system/pull/103)
192
+ - Merge refactor_header commits into develop-itml [`#104`](https://github.com/eea/volto-eea-design-system/pull/104)
193
+ - Rebase develop [`#102`](https://github.com/eea/volto-eea-design-system/pull/102)
194
+ - 1.6 work from develop-itml [`#98`](https://github.com/eea/volto-eea-design-system/pull/98)
195
+ - fix(profile form): fieldsets take parent width [`#100`](https://github.com/eea/volto-eea-design-system/pull/100)
196
+ - Revert "refactor(header): implementation in preparation for Volto integration #20" [`#96`](https://github.com/eea/volto-eea-design-system/pull/96)
197
+ - Release 1.6.0 [`e771e65`](https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c)
198
+ - Autobuild of docusaurus docs [`c0679bb`](https://github.com/eea/volto-eea-design-system/commit/c0679bbc7d779a8e0cf3b2abf053252537a9cf53)
199
+ - feat(pagination,related) added several r3 components #105 [`08d47c1`](https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91)
200
+ - Autobuild of docusaurus docs [`a3619ae`](https://github.com/eea/volto-eea-design-system/commit/a3619aed45905c8caa8070e9045e7be33c6f5060)
201
+ - update style for accordion title [`0b0d678`](https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192)
202
+ - Autobuild of docusaurus docs [`e447c6f`](https://github.com/eea/volto-eea-design-system/commit/e447c6f5d85f8b866072efadc4a2a80032838854)
203
+ - Autobuild of docusaurus docs [`c6efddf`](https://github.com/eea/volto-eea-design-system/commit/c6efddf792d046a4256ac09d7e0438c153545ea9)
204
+ - Revert "chore(github): merge changes from develop to develop-itml" [`ca9520f`](https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472)
205
+ - Autobuild of docusaurus docs [`7ff5e60`](https://github.com/eea/volto-eea-design-system/commit/7ff5e607dc45aabc283fe1a2cfddb12816f42d68)
206
+ - chore(github): merge changes from develop to develop-itml [`063bd6e`](https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e)
207
+ - Autobuild of docusaurus docs [`44b197a`](https://github.com/eea/volto-eea-design-system/commit/44b197a09d36447194083151d3cc6cf24b3d32ae)
208
+ - refactor breadcrumbs component, make it functional and customizable [`e902d69`](https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf)
209
+ - change(footer): added display variable for footer site logos [`d5b3c2f`](https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb)
210
+ - feat(cards): add custom display for volto-block-image-cards [`645096a`](https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5)
211
+ - refactor(storybook):add textarea control to add/remove fluid class [`475f540`](https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909)
212
+ - refactor(storybook): clear up unnecessary form elements controls [`f7e7d5b`](https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e)
213
+ - fix(less variables):rename publication card variables [`55c6fb8`](https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184)
214
+ - fix(Related Content): limit publication card number to 4 [`e7df032`](https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d)
215
+ - fix(Publication Card): add link to card and arg name fix [`36a7c96`](https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c)
216
+ - chore(github): build deployment only on develop branch [`a5a1b08`](https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222)
217
+ - chore(github): build deployment only on develop branch [`bb455aa`](https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83)
218
+ - Autobuild of docusaurus docs [`7e55ff2`](https://github.com/eea/volto-eea-design-system/commit/7e55ff27359f6299e5cc1e7fe9813cae773cfe92)
219
+ - chore(github): merge changes from develop to develop-itml [`129c12f`](https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499)
220
+ - refactor(container): update mobile width [`d548a44`](https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4)
221
+ - added comment about need for removal of this fix later [`65b8166`](https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b)
222
+ - Autobuild of docusaurus docs [`49a78a9`](https://github.com/eea/volto-eea-design-system/commit/49a78a93a0aab1fcac513fed86e08e536fa3b7fc)
223
+ - refactor(header): implementation in preparation for Volto integration #20 #89 [`95b136d`](https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c)
224
+ - refactor(form): adjust form items to volto theming [`4213cfb`](https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74)
225
+ - refactor(form): adjust form items to volto theming [`374ffbc`](https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b)
226
+ - refactor(grid): replace px with rem units [`f0331d0`](https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86)
227
+ - refactor(grid): replace px with rem units [`e792f51`](https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1)
228
+ - refactor(form): remove custom classes and add container to form items [`6b5442a`](https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7)
229
+ - refactor(form): remove custom classes and add container to form items [`d1ec083`](https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e)
230
+ - refactor(button): update variables [`b1774d8`](https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690)
231
+ - refactor(button): update variables [`061f3e3`](https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be)
232
+ - feat(Related Content): create Related Content component [`77eda95`](https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0)
233
+ - feat(Related Content): create Related Content component [`08d495b`](https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb)
234
+ - feat(PublicationCard):create publication card component & styles [`3e5f9b7`](https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae)
235
+ - feat(PublicationCard):create publication card component & styles [`12cdd5d`](https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75)
236
+ - refactor(colors): remove metalic blue color [`b2f95b6`](https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2)
237
+ - refactor(colors): remove metalic blue color [`1eea33f`](https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba)
238
+ - style(list): prettier fixes [`f9e3b05`](https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f)
239
+ - style(list): prettier fixes [`8eb715b`](https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf)
240
+ - refactor(list): remove selection control [`a09b179`](https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a)
241
+ - refactor(list): remove selection control [`17bf710`](https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987)
242
+ - refactor(statistic): remove custom class [`46cc560`](https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd)
243
+ - refactor(statistic): remove custom class [`b5c8e7c`](https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc)
244
+ - refactor(statistic): add inverted background to global variables [`1427e70`](https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a)
245
+ - refactor(statistic): add inverted background to global variables [`ea25dfa`](https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167)
246
+ - refactor(storybook):unordered list minor change [`df2b727`](https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b)
247
+ - refactor(storybook):unordered list minor change [`ef6db73`](https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e)
248
+ - refactor(progressBar): update progress bar colors with vars [`c4ef1f0`](https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e)
249
+ - refactor(progressBar): update progress bar colors with vars [`a44d73c`](https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958)
250
+ - refactor(pagination): fix menu overrides for tabs that affects pagination [`fe8c4ca`](https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5)
251
+ - refactor(pagination): fix menu overrides for tabs that affects pagination [`3f4b726`](https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c)
252
+ - refactor(storybook): add required attribute to form fields [`fecee27`](https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c)
253
+ - refactor(storybook): add required attribute to form fields [`21da79e`](https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450)
254
+ - refactor(storybook): small change in unordered list story [`3ffd872`](https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931)
255
+ - refactor(storybook): small change in unordered list story [`6ce16e9`](https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c)
256
+ - refactor(list): adjust bullet size [`2b29e4e`](https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec)
257
+ - refactor(list): adjust bullet size [`61c341c`](https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16)
258
+ - make breadcrumbs default size as tiny [`589581f`](https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f)
259
+ - bring back segment wrapper and make it attached [`8458f03`](https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38)
260
+ - set profile section overflow to auto [`71ab47f`](https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393)
261
+ - remove segment custom width [`1d3ea40`](https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16)
262
+ - fix profile section css overflow [`db5126f`](https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6)
263
+ - fix warning related to proptype [`946c6c6`](https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c)
264
+ - removed override already present in card.less [`50d2ab2`](https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69)
265
+ - change(github): auto deploy only on develop branch [`11d6b4e`](https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb)
266
+ - refactor(container): remove important from rules [`e984771`](https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5)
267
+ - refactor(container): remove important from rules [`1cc6984`](https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09)
268
+ - refactor(breadcrumb): remove custom class anf and new variables [`b3cb83d`](https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207)
269
+ - refactor(breadcrumb): remove custom class anf and new variables [`d5808ad`](https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66)
270
+ - refactor(form): update form wrapper component [`a719576`](https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a)
271
+ - refactor(form): update form wrapper component [`0736ec7`](https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2)
272
+ - change(blockquote): treat slate as a variation of blockquote component [`19bd9a5`](https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae)
273
+ - change(github): trigger autobuild when modifying templates contents [`46094b1`](https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af)
274
+ - refactor(Loader):remove image & add background image [`70fe041`](https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287)
275
+ - refactor(Loader):remove image & add background image [`ac38126`](https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf)
276
+ - change(docusaurus): updated template to change what's new title [`3e15f4d`](https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041)
277
+ - fix(radio): fix bullet scaling issue with firefox [`5f02c95`](https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49)
278
+ - fix(radio): fix bullet scaling issue with firefox [`dbb2e27`](https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93)
279
+ - update [`bbcab87`](https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316)
280
+ - rollback(cards): move custom display to volto-block-image-cards [`2564b1e`](https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006)
281
+ - don't use volto-slate [`6a02976`](https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a)
282
+ - update [`7a1d482`](https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea)
283
+ - Add rule about hardcoded values [`e04e0df`](https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05)
284
+ - add margin to <br> element to simulate gap as in design [`c6685c1`](https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458)
285
+ - remove uneeded style [`82a8fb1`](https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c)
286
+ - no `display: flex` for blockquote added from slate [`5595ce1`](https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc)
287
+ - Add file mode rule [`65c9a93`](https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5)
288
+ - Add indenting rule [`15c44cb`](https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0)
289
+ - Add functional components rule; add classnames rule [`91a0b06`](https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e)
290
+ - Add DRY rule [`66c9c3a`](https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c)
291
+ - Add rule about code length [`a5f3652`](https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386)
292
+ - Add rule about naming vars [`8f9020f`](https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74)
293
+ - Add rule about import sorting [`804e188`](https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b)
294
+
295
+ #### [0.1.5](https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5)
296
+
297
+ > 8 March 2022
298
+
299
+ - 1.5 release [`#99`](https://github.com/eea/volto-eea-design-system/pull/99)
300
+ - Make logo indepedent of Volto [`#86`](https://github.com/eea/volto-eea-design-system/pull/86)
301
+ - Accordion style [`#90`](https://github.com/eea/volto-eea-design-system/pull/90)
302
+ - fix(footer): make footerAction links white [`#88`](https://github.com/eea/volto-eea-design-system/pull/88)
303
+ - fix z-index of header top-bar [`#87`](https://github.com/eea/volto-eea-design-system/pull/87)
304
+ - fix(header) re-added span tags removed in pull request 74 [`#85`](https://github.com/eea/volto-eea-design-system/pull/85)
305
+ - Bring back mega menu multi section icons [`#84`](https://github.com/eea/volto-eea-design-system/pull/84)
306
+ - Fix header missing links [`#83`](https://github.com/eea/volto-eea-design-system/pull/83)
307
+ - Update package.json [`fa020cb`](https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af)
308
+ - Autobuild of docusaurus docs [`3083cb1`](https://github.com/eea/volto-eea-design-system/commit/3083cb13837cf44e89e277534e7ed288070c6d1d)
309
+ - fix(profile): section css overflow and padding issues #95 [`bb9eb0f`](https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653)
310
+ - added comment about need for removal of this fix later [`6fdbd71`](https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054)
311
+ - Autobuild of docusaurus docs [`66143b1`](https://github.com/eea/volto-eea-design-system/commit/66143b1e6d644c5da27365a321600c87825af1f3)
312
+ - change(footer): added display variable for footer site logos [`2f942b4`](https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea)
313
+ - Autobuild of docusaurus docs [`5323fae`](https://github.com/eea/volto-eea-design-system/commit/5323fae34b9b167b2f57c5bc528fa38e23488eb7)
314
+ - refactor(header): implementation in preparation for Volto integration #20 #97 [`cddda20`](https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd)
315
+ - Autobuild of docusaurus docs [`7977531`](https://github.com/eea/volto-eea-design-system/commit/79775312f1fdf2695082b5c8db17538e313c2a19)
316
+ - refactor(breadcrumbs): component, make it functional and pluggable #32 #94 [`9f42e80`](https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b)
317
+ - make breadcrumbs default size as tiny [`3c8e1c6`](https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6)
318
+ - bring back segment wrapper and make it attached [`9f413ff`](https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238)
319
+ - set profile section overflow to auto [`8db62bb`](https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d)
320
+ - remove segment custom width [`4a60d84`](https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7)
321
+ - Reformat header.less [`1f99dfc`](https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69)
322
+ - fix profile section css overflow [`8fd2654`](https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f)
323
+ - fix warning related to proptype [`824b9be`](https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723)
324
+ - refactor breadcrumbs component, make it functional and customizable [`4ec374e`](https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0)
325
+ - Autobuild of docusaurus docs [`0d97819`](https://github.com/eea/volto-eea-design-system/commit/0d978198d54ba62e88f3ea1c02a1ed55a11bef1b)
326
+ - change(card): added styles for volto cards integration #92 [`a46ac21`](https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6)
327
+ - removed override already present in card.less [`93c4e5a`](https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc)
328
+ - change(github): auto deploy only on develop branch [`bfa35a3`](https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5)
329
+ - Autobuild of docusaurus docs [`d98aa77`](https://github.com/eea/volto-eea-design-system/commit/d98aa77fc829766f118d3f387a799b30f77da955)
330
+ - Autobuild of docusaurus docs [`73d696d`](https://github.com/eea/volto-eea-design-system/commit/73d696dba0383ee2530fff62a4b56d33a04bf601)
331
+ - change(blockquote): treat slate as a variation of blockquote component [`5e8a8b8`](https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701)
332
+ - change(github): trigger autobuild when modifying templates contents [`5f7d152`](https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c)
333
+ - change(docusaurus): updated template to change what's new title [`58f58c8`](https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2)
334
+ - refactor(tab): updates on variables and overrides [`54bf703`](https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47)
335
+ - update [`96f4af0`](https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb)
336
+ - rollback(cards): move custom display to volto-block-image-cards [`79d4c89`](https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1)
337
+ - Remove console.log calls [`8a3a4cb`](https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23)
338
+ - Open overlay menu on global menu click [`cc749bc`](https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48)
339
+ - refactor(grid): remove column count from example [`ac0e9cf`](https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262)
340
+ - refactor(button): styling updates [`37afda5`](https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed)
341
+ - feat(KeyContent): add new component [`2534c54`](https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4)
342
+ - Cleanup args in header story [`2bf6a30`](https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d)
343
+ - style(checkbox/radio): prettier fixes [`a04939f`](https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd)
344
+ - refactor(checkbox/radio): remove header from message and adjust top position of bullet [`4a072b3`](https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6)
345
+ - Autobuild of docusaurus docs [`18d60cd`](https://github.com/eea/volto-eea-design-system/commit/18d60cdd969a6813c9051931389f326a14ba0807)
346
+ - feat(docusaurus): Updated developer guidelines [`ca146ff`](https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa)
347
+ - don't use volto-slate [`70ca3d4`](https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82)
348
+ - update [`81bb7d4`](https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a)
349
+ - merge develop into this branch [`ad5b388`](https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a)
350
+ - feat(cards): add custom display for volto-block-image-cards [`f49ffb6`](https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5)
351
+ - Autobuild of docusaurus docs [`93282b1`](https://github.com/eea/volto-eea-design-system/commit/93282b167fb846bc009ba1359960be14028fbb95)
352
+ - Autobuild of docusaurus docs [`cfa189e`](https://github.com/eea/volto-eea-design-system/commit/cfa189e2985daf48e0194d9d58c3904a1e5e6a53)
353
+ - Add rule about hardcoded values [`0c6912c`](https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407)
354
+ - Close menu when changing path [`65daea9`](https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2)
355
+ - Use renderMenuItem also in mobile menu [`02de0bb`](https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4)
356
+ - Fix TopDropdownMenu component rendering in mobile [`a4626de`](https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b)
357
+ - Add usePrevious hook [`797faba`](https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189)
358
+ - fix(breakpoints): fix largest screen breakpoint bug on scaling [`e4a11c8`](https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff)
359
+ - style(design-system): unix eol [`631fa90`](https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34)
360
+ - refactor(color): remove secondaryColorDarken variable [`74c8ba0`](https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb)
361
+ - Update comment [`ffa2400`](https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea)
362
+ - Fix clicking outside closes menu [`af52664`](https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c)
363
+ - Remove comment [`7d120b1`](https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0)
364
+ - Simplify overlay menu template [`28b0478`](https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526)
365
+ - style(design-system): unix eol [`3c753f0`](https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296)
366
+ - add margin to <br> element to simulate gap as in design [`9ab9a97`](https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c)
367
+ - remove uneeded style [`66e9064`](https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406)
368
+ - no `display: flex` for blockquote added from slate [`312a893`](https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8)
369
+ - refactor(lint changes): add lint changes [`6f6847f`](https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04)
370
+ - refactor(less variables): add variables to less for new components [`47df026`](https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34)
371
+ - fix(components): add grid structure to various components [`cc33546`](https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a)
372
+ - Autobuild of docusaurus docs [`5182887`](https://github.com/eea/volto-eea-design-system/commit/51828878d38a9ebe8a55ad04a5964f34b42d14be)
373
+ - Use header.less from develop branch [`99edbc6`](https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc)
374
+ - refactor(message): updates on styling [`b4cf850`](https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b)
375
+ - Implement outside click handling [`fa6f818`](https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec)
376
+ - Add useClickOutside hook [`70364c8`](https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f)
377
+ - Autobuild of docusaurus docs [`a94cc59`](https://github.com/eea/volto-eea-design-system/commit/a94cc59a6e574c8e31ce6f35de06843da48ac169)
378
+ - use proper naming conventions for var naming [`596e314`](https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684)
379
+ - Add file mode rule [`805baa7`](https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8)
380
+ - WIP [`a8d97f1`](https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905)
381
+ - use less variables [`b43ac8d`](https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329)
382
+ - Add indenting rule [`d589685`](https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103)
383
+ - WIP [`15bc0f4`](https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1)
384
+ - WIP [`5d1eba9`](https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d)
385
+ - Add functional components rule; add classnames rule [`1b2915e`](https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630)
386
+ - Footer link color @white [`578e4f7`](https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11)
387
+ - fix z-index of header [`7d2a5d6`](https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300)
388
+ - WIP [`785da36`](https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f)
389
+ - Add DRY rule [`2f1584e`](https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339)
390
+ - Add rule about code length [`318cd48`](https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813)
391
+ - Add rule about naming vars [`b112de0`](https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42)
392
+ - Add rule about import sorting [`cd337c1`](https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8)
393
+ - change(github): use develop for auto pushing [`a32a723`](https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605)
394
+ - feat(storybook):add Loader component [`f675834`](https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01)
395
+ - WIP [`d481324`](https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc)
396
+ - WIP [`57b5783`](https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc)
397
+ - fixes undefined on empty classes [`4b29080`](https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78)
398
+ - fix(storybook): lint auto changes for AvatarGrid [`b8e74f1`](https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6)
399
+ - feat(storybook): add AvatarGrid component [`b668445`](https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93)
400
+ - removes tags hashtag from jsx [`6b8b3e9`](https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0)
401
+ - impors colors from site variables [`6117267`](https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259)
402
+ - Autobuild of docusaurus docs [`f524325`](https://github.com/eea/volto-eea-design-system/commit/f524325b2671abfb2aa538fa61759bcd7e7f0797)
403
+ - fix(header) re-added span tags removed in pull request #74 [`00702d7`](https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8)
404
+ - stylelint changes [`a5ab830`](https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a)
405
+ - fixes less variables, fixes tags positioning [`cc19b9b`](https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7)
406
+ - refactor(Form):change form field wrapper implementation [`73cdd6d`](https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228)
407
+ - Autobuild of docusaurus docs [`0c870c2`](https://github.com/eea/volto-eea-design-system/commit/0c870c22347db6a32193b9fa0df969daee6870b8)
408
+ - Bring back classNames from header subpopup [`e477a51`](https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a)
409
+ - refactor(checkbox/radio): update variables and remove important rules [`ad533b4`](https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8)
410
+ - Autobuild of docusaurus docs [`1e654a3`](https://github.com/eea/volto-eea-design-system/commit/1e654a3af8e15d38817d4d4f4bb159eeb9b11fc7)
411
+ - small fix for the link in footer action [`72df049`](https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb)
412
+ - feat(storybook): add testimonial component [`55d9747`](https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c)
413
+ - adds Tags [`e37fc19`](https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe)
414
+ - refactor(inpageNavigation): adjust to volto theming [`62f74ea`](https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5)
415
+ - refactor(grid): remove custom grid [`1d978a9`](https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf)
416
+ - docs(docusaurus): visuals guidelines [`544a950`](https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379)
417
+ - docs(docusaurus): search guidelines [`0fb229d`](https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8)
418
+ - style(message): stylelint fix [`5b75057`](https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225)
419
+ - refactor(message): update colors to match design [`633ce31`](https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4)
420
+ - docs(docusaurus): loader page [`892a25d`](https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402)
421
+ - refactor(banner): update class name [`ef0969b`](https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c)
422
+ - refactor(Tab): fix vertical tab alignment [`401bdf2`](https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574)
423
+
424
+ #### [0.1.4](https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4)
425
+
426
+ > 1 March 2022
427
+
428
+ - 1.4 release [`#81`](https://github.com/eea/volto-eea-design-system/pull/81)
429
+ - 1.4 release [`#80`](https://github.com/eea/volto-eea-design-system/pull/80)
430
+ - fix(accordion): update style for accordion to comply with eea design [`#72`](https://github.com/eea/volto-eea-design-system/pull/72)
431
+ - Update guideline on subcomponents [`#79`](https://github.com/eea/volto-eea-design-system/pull/79)
432
+ - feat(blockquote): customize slate blockquote element to comply with eea design [`#73`](https://github.com/eea/volto-eea-design-system/pull/73)
433
+ - Simplify data structure for footer [`#78`](https://github.com/eea/volto-eea-design-system/pull/78)
434
+ - Rename some logos [`#76`](https://github.com/eea/volto-eea-design-system/pull/76)
435
+ - Provide navigation item urls [`#74`](https://github.com/eea/volto-eea-design-system/pull/74)
436
+ - Bump release version [`c41a42b`](https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1)
437
+ - Autobuild of docusaurus docs [`494b25a`](https://github.com/eea/volto-eea-design-system/commit/494b25aee0eaac360ea669bd511fe29eaf6ace83)
438
+ - add style for accordion title input on edit mode [`598aa12`](https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e)
439
+ - Autobuild of docusaurus docs [`48e1168`](https://github.com/eea/volto-eea-design-system/commit/48e116847e62dac145b1343134e5f35b0ec015af)
440
+ - use relative links [`af91a20`](https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2)
441
+ - Autobuild of docusaurus docs [`24791cc`](https://github.com/eea/volto-eea-design-system/commit/24791cc780ef2a8a6f9e97d38ab600dc8dd15178)
442
+ - Typo [`90da95c`](https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894)
443
+ - Autobuild of docusaurus docs [`568e187`](https://github.com/eea/volto-eea-design-system/commit/568e187890a3c3e2c2c1b62ebd6b06a9fb499be1)
444
+ - Autobuild of docusaurus docs [`4cae12f`](https://github.com/eea/volto-eea-design-system/commit/4cae12ff44ce35e57e242dd683713123b98c4bbc)
445
+ - Autobuild of docusaurus docs [`b282604`](https://github.com/eea/volto-eea-design-system/commit/b282604fd297f43ab6cbe4715747bdd2e8d8cd12)
446
+ - Autobuild of docusaurus docs [`2059819`](https://github.com/eea/volto-eea-design-system/commit/2059819b8031b45b803ea3bc8bb18b88268c528e)
447
+ - Small improvements to footer [`f6d1fdc`](https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85)
448
+ - Rename files in footer story [`3de0c19`](https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a)
449
+ - Rename, reorganize logos [`1ef8d22`](https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d)
450
+ - make footer anchor links white [`0c671e1`](https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10)
451
+ - cosmetics: remove formatting [`e02b08d`](https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29)
452
+ - add footer links,align footer image [`b039564`](https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1)
453
+ - Autobuild of docusaurus docs [`0ef9da2`](https://github.com/eea/volto-eea-design-system/commit/0ef9da24317d99b97087d22cb3a68a7e4c9a00e8)
454
+ - Update style [`8968699`](https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5)
455
+ - Apply slate customization if volto-slate addon is used [`c066701`](https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf)
456
+ - Autobuild of docusaurus docs [`00dad11`](https://github.com/eea/volto-eea-design-system/commit/00dad11ddb2352e38d1034e2d3c5e55a8a4a4363)
457
+ - remove styling on header popups [`86c499b`](https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49)
458
+ - remove search icon styling [`aca80fd`](https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31)
459
+ - adjust popup height for computer screens [`47c5edb`](https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf)
460
+ - use custom var for line-height [`f7f6c7e`](https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c)
461
+ - fix search-input icon line-height [`b087ff8`](https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c)
462
+ - fix header urls [`e590891`](https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49)
463
+ - refactor(megaMenu): update gradient [`47f2ea4`](https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55)
464
+ - update stories [`81973ca`](https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67)
465
+ - update footer stories [`4e57428`](https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637)
466
+ - Autobuild of docusaurus docs [`582c4dd`](https://github.com/eea/volto-eea-design-system/commit/582c4dde04d2ba2a3d88bd465f89414f05596f5a)
467
+ - lint fix [`e9790ca`](https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e)
468
+ - Autobuild of docusaurus docs [`e8b0939`](https://github.com/eea/volto-eea-design-system/commit/e8b09393676d8211c2d0c6f4c712c63c0fd16279)
469
+ - Update semantic.less [`a4a90ae`](https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a)
470
+ - refactor(megaMenu): update margins for menu items [`230e476`](https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f)
471
+ - docs(docusaurus): divider page [`c6bb238`](https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4)
472
+ - refactor(pagination): adjust to volto theming [`06cc3b6`](https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7)
473
+ - refactor(Form):create form field wrapper file [`95b9934`](https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13)
474
+ - fix login container width [`9a887e3`](https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81)
475
+ - remove comments [`2db0d2c`](https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87)
476
+ - refactor Footer component to consume children and prop [`faafcff`](https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78)
477
+
478
+ #### [0.1.4-beta.0](https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0)
479
+
480
+ > 25 February 2022
481
+
482
+ - feat(github): added feature and bug reports templates [`#71`](https://github.com/eea/volto-eea-design-system/pull/71)
483
+ - feat(github): added feature and bug reports templates with our guidelines as checkboxes [`1549093`](https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823)
484
+
485
+ #### [0.1.3](https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3)
486
+
487
+ > 25 February 2022
488
+
489
+ - 1.3 release [`#70`](https://github.com/eea/volto-eea-design-system/pull/70)
490
+ - 1.3 release [`#69`](https://github.com/eea/volto-eea-design-system/pull/69)
491
+ - 1.3 release [`#65`](https://github.com/eea/volto-eea-design-system/pull/65)
492
+ - change(blockquote): proofread docusaurus usage and cleaned api section #38 [`#62`](https://github.com/eea/volto-eea-design-system/pull/62)
493
+ - refactor(banner): actions as buttons; don't hardcode url for banner i… [`#61`](https://github.com/eea/volto-eea-design-system/pull/61)
494
+ - bump package release to 1.3.0 [`f3cfe4f`](https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010)
495
+ - Autobuild of docusaurus docs [`bf78f29`](https://github.com/eea/volto-eea-design-system/commit/bf78f293601366fbb830e55993e3619dcc5cd997)
496
+ - chore(design system): technical commit for edw integration tests [`9f76035`](https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2)
497
+ - chore(storybook): prettier fix [`354c7b3`](https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8)
498
+ - style(input) prettier fixes [`e83fa0c`](https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9)
499
+ - refactor(Menu): add class to mega menu items for styling [`19baa34`](https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee)
500
+ - refactor(megaMenu): fix link hover issue for tablet [`564e972`](https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d)
501
+ - refactor(Grid):minor changes and delete extra files [`272585d`](https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f)
502
+ - refactor(Footer): minor code changes [`67cb4bc`](https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e)
503
+ - refactor(Header): accessibility image alt fix [`a7347a6`](https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75)
504
+ - refactor(table): fix th font weight [`a96a0a7`](https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87)
505
+ - refactor(header): add remix icons and minor updates [`c9c97dd`](https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af)
506
+ - doc(colours):change font size to fit text in one line [`4ad7516`](https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82)
507
+ - doc(colours):fix color to better show primary ones [`705b789`](https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0)
508
+ - refactor(Breadcrumb): add react router link and minor bug fix [`073a3a3`](https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9)
509
+ - refactor(Timeline): divide to sub components and change files to .jsx [`3e2bd3b`](https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849)
510
+ - Autobuild of docusaurus docs [`5c8dc50`](https://github.com/eea/volto-eea-design-system/commit/5c8dc50058b2ee4a04ab53c6bc35a9bb43fc2612)
511
+ - refactor(header): update variables [`326655a`](https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702)
512
+ - refactor(table): adjust to volto theming [`ab7a0e8`](https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576)
513
+ - refactor(List): add extra default list story [`95665cd`](https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f)
514
+ - refactor(timeline): adjust to volto theming [`b98641a`](https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387)
515
+ - refactor(Header): show menu on search & minor bug fix [`4d49a8a`](https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288)
516
+ - refactor(Header): change header buttons implementation [`6608b8c`](https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069)
517
+ - refactor(Header): link header's menu to mega menu [`08406d8`](https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32)
518
+ - refactor(megaMenu): new implementation [`ff013af`](https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1)
519
+ - change(docusaurus) change generation of what's new section and bump package version [`6c35cff`](https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b)
520
+ - Autobuild of docusaurus docs [`aacf4f2`](https://github.com/eea/volto-eea-design-system/commit/aacf4f29a3ac415180bee53941d4ebd564bee241)
521
+ - refactor(Menu): change mega menu implementation [`455a51b`](https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7)
522
+ - refactor(header): update variables [`4e5d08d`](https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9)
523
+ - refactor(Header): add sub components and change existing Main [`74c35a3`](https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b)
524
+ - change(volto): removed customizations made for ims theme from volto-eea-design-system [`bc8d514`](https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a)
525
+ - refactor(Footer): delete Actions & ThemeSites files and clear imports [`7a78456`](https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52)
526
+ - Autobuild of docusaurus docs [`d3fc9dc`](https://github.com/eea/volto-eea-design-system/commit/d3fc9dc537f390764b8338621387c1f2e2b458ff)
527
+ - change(accordion): modified default accordion stories titles with real accordion names [`cf11cc8`](https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7)
528
+ - refactor(comment): remove avatar border radius [`d42c37b`](https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae)
529
+ - refactor(Header): header items as storybook arguments [`388c752`](https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6)
530
+ - refactor(header): update dropdown menu [`32eb0fa`](https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea)
531
+ - refactor(Input): label position and style change [`970074a`](https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd)
532
+ - refactor(Banner): minor bug fix [`b9073b6`](https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895)
533
+ - refactor(blockquote): fix responsive margins and sizes rems [`209f94f`](https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34)
534
+ - refactor(banner): adjust title size [`7a24d9c`](https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504)
535
+ - fix(all): merge eol [`c68f6e0`](https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28)
536
+ - refactor(banner): update less variables [`35b0a98`](https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be)
537
+ - fix(all): change eol to unix [`62e7224`](https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a)
538
+ - fix(banner): separate url value [`f9c9140`](https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8)
539
+ - refactor(pullquote): add word break [`2245e53`](https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c)
540
+ - Autobuild of docusaurus docs [`f8cf6e7`](https://github.com/eea/volto-eea-design-system/commit/f8cf6e7951135efe2ea1ffb6b443af3bc1a47216)
541
+ - refactor(Blockquote):remove image stories [`a6357ca`](https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f)
542
+ - rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx [`a1bd715`](https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67)
543
+ - change(docusaurus) proofread blockquote usage section and removed unused api section [`0bb29fd`](https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932)
544
+ - change(ci) build storybook and docusaurus only when pushing to develop-itml branch [`4de0cbf`](https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7)
545
+ - Autobuild of docusaurus docs [`2286a06`](https://github.com/eea/volto-eea-design-system/commit/2286a06d2990e993416d670a334ccc7abfba7790)
546
+ - style(storybook): prettier fixes [`3c9ad34`](https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847)
547
+ - refactor(header): adjust to volto in progress [`760beca`](https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509)
548
+ - Autobuild of docusaurus docs [`aa61aea`](https://github.com/eea/volto-eea-design-system/commit/aa61aea1618e14b5ab1b365fa5127a0bf3863811)
549
+ - Add space line in component [`d4d1a5f`](https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00)
550
+ - Refactor banner into content subcomponent [`f8df238`](https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82)
551
+ - Autobuild of docusaurus docs [`5d0e9be`](https://github.com/eea/volto-eea-design-system/commit/5d0e9be806a47ee9cefd24b51f0222e39cb1e623)
552
+ - refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; [`6dd5a41`](https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1)
553
+ - refactor(Image): change image path [`a580da6`](https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5)
554
+ - Autobuild of docusaurus docs [`b2381bc`](https://github.com/eea/volto-eea-design-system/commit/b2381bcbd4a2b9d6b88d94ff84ad2368ae45de90)
555
+ - lint fixes [`cda322d`](https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1)
556
+ - Autobuild of docusaurus docs [`7ca734d`](https://github.com/eea/volto-eea-design-system/commit/7ca734d890f13cf6412ed21f82d4ef957a2228ab)
557
+ - Autobuild of docusaurus docs [`5f8da8d`](https://github.com/eea/volto-eea-design-system/commit/5f8da8d9ba1a77056c346a16a9b5f5f9e5c24b16)
558
+ - chore(infrastructure) updated branch with changes from bitbucket [`77866f8`](https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7)
559
+ - change(infrastructure): modify whats new doc when committing the auto deployment [`39df33e`](https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38)
560
+ - change(blockquote): introduce float argument for blockquote with image storybook [`8fc7290`](https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c)
561
+ - fix(blockquote): align self property now uses a valid entry [`ec76163`](https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273)
562
+ - change(infrastructure): specify that docs folder contains changes for deployment [`a1ca915`](https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9)
563
+ - refactor(timeline): theming updates [`c80c9aa`](https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8)
564
+
565
+ #### [0.1.2](https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2)
566
+
567
+ > 17 February 2022
568
+
569
+ - Re-do release 1.2.0 [`#64`](https://github.com/eea/volto-eea-design-system/pull/64)
570
+ - EEA Design System - redesign basic components [`#9`](https://github.com/eea/volto-eea-design-system/pull/9)
571
+ - Add example blockquote component [`#57`](https://github.com/eea/volto-eea-design-system/pull/57)
572
+ - Cleanup imports; add Guidelines [`#56`](https://github.com/eea/volto-eea-design-system/pull/56)
573
+ - Develop itml [`#8`](https://github.com/eea/volto-eea-design-system/pull/8)
574
+ - Merge develop changes [`#7`](https://github.com/eea/volto-eea-design-system/pull/7)
575
+ - EEA Design System - redesign basic components (#9) [`#47`](https://github.com/eea/volto-eea-design-system/issues/47)
576
+ - fix(docusaurus): broken links due to storybook changes [`#47`](https://github.com/eea/volto-eea-design-system/issues/47)
577
+ - small commit to trigger deployment of storybook and docusaurus [`be46ea3`](https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71)
578
+ - Autobuild of docusaurus docs [`f31deeb`](https://github.com/eea/volto-eea-design-system/commit/f31deeb7da019e5be05303f02036c183ca7c7b58)
579
+ - styling [`c169cc0`](https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde)
580
+ - refactor(Header): change mega menu [`de0fc6b`](https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41)
581
+ - refactor(Pullquote): divide Pullquote to sub components [`34413c4`](https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb)
582
+ - refactor(comment): change avatar src [`e5f9c4c`](https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4)
583
+ - Autobuild of docusaurus docs [`33e00ea`](https://github.com/eea/volto-eea-design-system/commit/33e00ea16eb2b53b7e476fff980470910e20df52)
584
+ - change(docusaurus) tweak auto deployment to always commit changes from docs [`a2940da`](https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d)
585
+ - refactor(Image): change image src [`b971084`](https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d)
586
+ - refactor(banner): change image position [`cdd76d5`](https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f)
587
+ - docs(docusaurus): page adjustments [`0641eac`](https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009)
588
+ - refactor(blockquote): adjust font sizes [`d71a3ce`](https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e)
589
+ - change(docusaurus) align deployment steps for building docusaurus [`37e4ce0`](https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582)
590
+ - refactor(comment): adjust font sizes [`0311ed1`](https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b)
591
+ - refactor(Accordion): clear up accordion stories code [`4e59b8f`](https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077)
592
+ - change(docusaurus) use itml branch for docusaurus deployment [`6e286c5`](https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927)
593
+ - refactor(footer): update font sizes [`1c91c35`](https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14)
594
+ - change(testing) removed navigation from cypress tests until component is finished [`5549f4c`](https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7)
595
+ - bump package version to signaling of a major release [`c835f1d`](https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321)
596
+ - change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system [`e9aa5bc`](https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd)
597
+ - refactor(accordion): adjust to volto theming [`971fcb8`](https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6)
598
+ - refactor(Header): change mobile mega menu [`c7ecf18`](https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e)
599
+ - refactor(blockquote): update component name [`572e655`](https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26)
600
+ - style(storybook): prettier fixes [`59f941d`](https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae)
601
+ - refactor(header): fix story header import [`ceda6c7`](https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427)
602
+ - refactor(storybook): update ui index components exports [`ce78d47`](https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec)
603
+ - refacto(headings): update mobile headings sizes [`b2e9f83`](https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0)
604
+ - refactor(storybook): move components to ui folder [`cb91f88`](https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb)
605
+ - refactor(Header): change header mega menu [`7559b57`](https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5)
606
+ - refactor(list): adjust to volto theming [`1079c73`](https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482)
607
+ - change(infrastructure) auto build docusaurus when pushing to develop-itml branch [`7bebdf5`](https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b)
608
+ - change(infrastructure) re-enable integration tests for auto release stack [`ce8daf8`](https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a)
609
+ - refactor(breadcrumbs): update less variables [`640817e`](https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039)
610
+ - refactor(button) adjust to volto theming [`eb257f8`](https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c)
611
+ - refactor(storybook): remove components from customization folder [`4a9bb9b`](https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0)
612
+ - added several sections to the theming guidelines [`ff1a649`](https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0)
613
+ - feature(docusaurus) added theming guidelines [`ded1f04`](https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f)
614
+ - refactor(Header): add sub components [`7f955db`](https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0)
615
+ - refactor(Segment): change to .jsx extension [`5cb35d8`](https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e)
616
+ - refactor(Pullquote): change to .jsx extension [`564cf7e`](https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47)
617
+ - refactor(PopUp):change to .jsx extension [`dcb24ff`](https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0)
618
+ - refactor(InpageNavigation): change to .jsx extension [`dfefce3`](https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f)
619
+ - refactor(Blockquote): change to .jsx extension [`44a1645`](https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e)
620
+ - refactor(storybook): remove components from customizations folder [`8930ede`](https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b)
621
+ - refactor(Footer): add sub components and props [`c3d1487`](https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2)
622
+ - refactor(container): change variable name for computer padding [`26d123f`](https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9)
623
+ - refactor(banner): adjust to volto theming [`451b949`](https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1)
624
+ - refactor(inpageNavigation): adjust to volto theming [`85c631a`](https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610)
625
+ - refactor(Footer): replace with subcomponents [`378c652`](https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb)
626
+ - refactor(Header): header change [`029e850`](https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b)
627
+ - refactor(Header): change header bar [`2b766fd`](https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b)
628
+ - refactor(Footer): create Actions & Sites sub components [`446840b`](https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e)
629
+ - refactor(storybook): delete demo stories [`8b58d02`](https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01)
630
+ - refactor(Header): add comments to header menu [`c2c83b2`](https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de)
631
+ - refactor(InpageNavigation): clear up code [`1d7afdc`](https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619)
632
+ - refactor(inpageNavigation): remove imports [`25c1d1c`](https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20)
633
+ - refactor(Pullquote): add component propTypes [`d32c5e6`](https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc)
634
+ - style(footer): prettier fix [`902c257`](https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f)
635
+ - refactor(Blockquote): add component proTypes [`ea02649`](https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8)
636
+ - refactor(banner) : change file type and folder [`878742b`](https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43)
637
+ - refactor(footer): adjust to volto theming [`bdff176`](https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7)
638
+ - refactor(docusaurus): restore config [`f2c5239`](https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87)
639
+ - docs(docusaurus): logo change [`3af5e5c`](https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee)
640
+ - refactor(Inpage Navigation): changed button's display [`36e5b4f`](https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2)
641
+ - refactor(heading): story name update [`aa10f34`](https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a)
642
+ - refactor(banner): less and variables files created [`d5b1a8a`](https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd)
643
+ - refactor(storybook): global site files styling update [`f3770f1`](https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2)
644
+ - refactor(message): adjust to volto theming [`3e950fc`](https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738)
645
+ - refactor(timeline): update after removing timeline addon [`f54d380`](https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15)
646
+ - fix(inpageNavigation): hide at the top of the page [`97ef500`](https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4)
647
+ - refactor(tab): minor styling update [`1252ad0`](https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e)
648
+ - refactor(form): minor styling update [`79934b2`](https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22)
649
+ - refactor(logo): update image [`f611372`](https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e)
650
+ - refactor(modal): modal and confirm adjust to volto theming [`83b60e9`](https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5)
651
+ - refactor(footer) adjust to volto theming update [`a59f1c3`](https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209)
652
+ - refactor(header): minor styling update [`dd6b55c`](https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b)
653
+ - refactor(storybook): main and custom less files update [`1607760`](https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2)
654
+ - refactor(comment): adjust to volto theming [`84348c3`](https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46)
655
+ - refactor(button) minor styling update [`8782bb2`](https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682)
656
+ - refactor(accordion): minor styling update [`aeaf25f`](https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e)
657
+ - Add proper changes to whatsnew meant in previous commit [`40f78e3`](https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11)
658
+ - enhancement(docusaurus) modified headings to be within release versions [`19ace30`](https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c)
659
+ - Manual docs build and commit [`666eb6a`](https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35)
660
+ - Refs #145331 manually commit changelog until autobuild is stabilized [`93168b0`](https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42)
661
+ - Autobuild of docusaurus docs [`879dedc`](https://github.com/eea/volto-eea-design-system/commit/879dedc51d7297246e47e30366a11f0c494f9959)
662
+ - Refs #145331 use iso date to release so that we see also time [`ceedf08`](https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883)
663
+ - Autobuild of docusaurus docs [`eff22bf`](https://github.com/eea/volto-eea-design-system/commit/eff22bffaeae045208044452791664b879d0a6ba)
664
+ - Refs #145331 add all changes when auto building docusaurus [`ce11cce`](https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91)
665
+ - Autobuild of docusaurus docs [`0183690`](https://github.com/eea/volto-eea-design-system/commit/01836902744cc0f25fd393ab754d50b71b95a7d8)
666
+ - enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 [`da25c0e`](https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827)
667
+ - correct connfig for doco [`93e1313`](https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021)
668
+ - Autobuild of docusaurus docs [`d26a717`](https://github.com/eea/volto-eea-design-system/commit/d26a7171844378dfa872e807537b265684f25a29)
669
+ - docs(docusaurus):multiple page updates [`2aba73e`](https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01)
670
+ - refactor(progress): add progress bar colors [`ccf3c98`](https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13)
671
+ - refactor(item): adjust to volto theming [`89a16af`](https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569)
672
+ - refactor(statistic): adjust to volto theming [`b726e49`](https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df)
673
+ - refactor(segmant): adjust to volto theming [`3ab211e`](https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df)
674
+ - refactor(label): adjust to volto theming [`3c945e1`](https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6)
675
+ - refactor(popup): adjust to volto theming [`d0d192d`](https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55)
676
+ - refactor(pullquotes) remove unnecessary variables [`e0d20a3`](https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9)
677
+ - refactor(blockquote) change variables names [`36fd5be`](https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76)
678
+ - doc(accordion):revert previous change [`3de02da`](https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a)
679
+ - doc(docusaurus):Fix text for various parts [`bfd3fa2`](https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e)
680
+ - refactor(storybook):adjust headings [`32f64f9`](https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287)
681
+ - refactor(pullquote):adjust to volto theming [`fee4466`](https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2)
682
+ - refactor(blockquote):adjust to volto theming [`5eec87f`](https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d)
683
+ - refactor(progress):adjust to volto theming [`d1ab950`](https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d)
684
+ - refactor(card):adjust to volto theming [`2ab6f91`](https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00)
685
+ - refactor(timeline):adjust timeline module [`213eb11`](https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4)
686
+ - perf(timeline):removed semantic timeline package [`0aeb34a`](https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301)
687
+ - feat(blockquote) added blockquote styles as a custom module [`d30662e`](https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130)
688
+ - Autobuild of docusaurus docs [`5dae334`](https://github.com/eea/volto-eea-design-system/commit/5dae3347560c6b639f98fca115a672ae808193f9)
689
+ - docs(grid):update components grid [`60eb083`](https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5)
690
+ - Autobuild of docusaurus docs [`74db92d`](https://github.com/eea/volto-eea-design-system/commit/74db92d5aebb339eb071b588f897ad07dbc2f32a)
691
+ - docs(docusaurus):update page content [`565697f`](https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e)
692
+ - Autobuild of docusaurus docs [`bd8b1e8`](https://github.com/eea/volto-eea-design-system/commit/bd8b1e874fcc3f2304554ea4b7523c52faeff399)
693
+ - docs(docusaurus):updated various pages [`f860176`](https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac)
694
+ - fix(footer):missing image [`ac91a29`](https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8)
695
+ - refactor(footer):mobile responsiveness [`14822be`](https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609)
696
+ - refactor(form elements):changed text [`919beea`](https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230)
697
+ - fix(comment):fix broken image [`8125dc1`](https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9)
698
+ - refactor(banner):story rename [`56ff603`](https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717)
699
+ - fix(logo): logo change [`5f8c8af`](https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b)
700
+ - fix(message): fix font loading [`fdc498e`](https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402)
701
+ - Autobuild of docusaurus docs [`8f7725a`](https://github.com/eea/volto-eea-design-system/commit/8f7725a006f0c118bc65fc4514b35c655fc17a8a)
702
+ - refactor(storybook): multiple components [`9277aac`](https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23)
703
+ - fix typo for caption @desktop line-height pixel number [`1671552`](https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924)
704
+ - Autobuild of docusaurus docs [`f983dd6`](https://github.com/eea/volto-eea-design-system/commit/f983dd683ab5f0d32feb925c7a5403a628221101)
705
+ - refactor(storybook): multiple components fixes [`4a3ff51`](https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22)
706
+ - add new images for spacing [`7b7b2c4`](https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9)
707
+ - Autobuild of docusaurus docs [`39c056a`](https://github.com/eea/volto-eea-design-system/commit/39c056a8f1824bfdf2959a7add452d4bdcc1f08e)
708
+ - Updated what's new section with actual commits from volto-eea-design-system repo [`fc5e3c3`](https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd)
709
+ - Autobuild of docusaurus docs [`aac5b98`](https://github.com/eea/volto-eea-design-system/commit/aac5b9801ae566225c73424f51b5346126c493f7)
710
+ - Responsiveness updates [`48e1351`](https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699)
711
+ - Autobuild of docusaurus docs [`d27defd`](https://github.com/eea/volto-eea-design-system/commit/d27defdf515fd21ba744815c54bbd0f7fb29054b)
712
+ - remove images from typography and colour docs [`8493e92`](https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6)
713
+ - Deleted files [`b82f982`](https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf)
714
+ - Prettier fixes [`678c9be`](https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6)
715
+ - Tablet Breakpoint update [`b229c27`](https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac)
716
+ - Timeline and responsiveness updates [`1ed1524`](https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373)
717
+ - Tab and paggination updates [`96796ff`](https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f)
718
+ - List updates [`28f1b53`](https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106)
719
+ - Item updates [`fae93d4`](https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744)
720
+ - Form Updates [`e986a9f`](https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232)
721
+ - Layout updates [`854f388`](https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6)
722
+ - recovered files from origin [`a4ac04f`](https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a)
723
+ - Statistic and accordion updates [`16064ce`](https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f)
724
+ - Layout updates [`8b7a4dc`](https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b)
725
+ - removed API tabs [`58aa928`](https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3)
726
+ - Autobuild of docusaurus docs [`2ba9be5`](https://github.com/eea/volto-eea-design-system/commit/2ba9be5de7f86c3b20ba4109a81ca19ade0e1ec8)
727
+ - Removed header title from partial docusaurus components. [`ed7c45e`](https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952)
728
+ - Reattempting commented out integrations tests. [`3dd8211`](https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05)
729
+ - Docusaurus title possible fix. [`db699e7`](https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8)
730
+ - Properly commented out integration tests. [`48b3a15`](https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867)
731
+ - Commented out integration tests. [`574cfec`](https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d)
732
+ - List story updated [`e96a6f6`](https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432)
733
+ - Footer and TOC theming [`bb3d3c4`](https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230)
734
+ - Prettier fixes [`1337e6f`](https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a)
735
+ - Minor fixes for tests [`3bdf306`](https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776)
736
+ - Layout components theming [`5861013`](https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938)
737
+ - Pullquotes updates [`c598421`](https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a)
738
+ - Grid updates [`ae09945`](https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd)
739
+ - Grid updates [`700332d`](https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584)
740
+ - added layout grid [`2e6be55`](https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3)
741
+ - statistic overrides changes [`2b11cb5`](https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc)
742
+ - tab overrides changes [`87aaf32`](https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a)
743
+ - popup overrides changes [`a9555e3`](https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5)
744
+ - accordion overrides changes [`fdcf7d5`](https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49)
745
+ - container overrides changes [`4b3970b`](https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719)
746
+ - button overrides changes [`d5b78dd`](https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93)
747
+ - message overrides changes [`6dccfca`](https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c)
748
+ - segment storie changes [`296371f`](https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8)
749
+ - progress component stories changes [`df10c2e`](https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5)
750
+ - timeline comp storybook changes [`1f42686`](https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0)
751
+ - message comp storybook changes [`c86b405`](https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f)
752
+ - image component storybook changes [`91290ec`](https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3)
753
+ - item stories changes [`772e41f`](https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9)
754
+ - list stories and style changes [`c61db53`](https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82)
755
+ - grid component & stories changes [`4a5752e`](https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f)
756
+ - label component changes [`df8c0ff`](https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b)
757
+ - created pullquote component & stories [`df35563`](https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736)
758
+ - site variebales & overrides changes [`7251162`](https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93)
759
+ - created banner component and stories [`9be170f`](https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff)
760
+ - form element storybook changes [`c4b06aa`](https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af)
761
+ - container component stories fixes [`692cfce`](https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec)
762
+ - comment component stories changes [`f1c5e75`](https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66)
763
+ - added svg & png files [`f1338d5`](https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9)
764
+ - card component stories changes [`6ccba1e`](https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3)
765
+ - breadcrumb component & stories changes [`5bceb98`](https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6)
766
+ - blockquote component minor changes [`cdf71a8`](https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09)
767
+ - added new content to docusaurus [`1c83452`](https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a)
768
+ - added page-header,footer and grid in docusaurus [`660c8e3`](https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6)
769
+ - added guidelines' text and finished all components [`02d75fc`](https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506)
770
+ - added missing components to docusaurus [`934dfd8`](https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3)
771
+ - added more missing components in docusaurus [`8be8263`](https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a)
772
+ - Autobuild of docusaurus docs [`394834b`](https://github.com/eea/volto-eea-design-system/commit/394834b22cee94831ab6d46cf4bd72003612c8f3)
773
+ - added more docusaurus components [`52a3b9e`](https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb)
774
+ - added various components to docusaurus [`550d719`](https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd)
775
+ - Kebab case class names [`b41cd07`](https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f)
776
+ - Classes renamed [`73c8c3d`](https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c)
777
+ - Message and pagination classes updates [`c230687`](https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa)
778
+ - List and item less updates [`ce0de17`](https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939)
779
+ - Modal and confirm class updates [`0ae47e6`](https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852)
780
+ - Card and Comment class updates [`3899465`](https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3)
781
+ - Accordion class updates [`9cdde86`](https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5)
782
+ - Button classes updates [`788c289`](https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd)
783
+ - Added timeline to package json fixed [`f2e93e0`](https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c)
784
+ - Added timeline to package json [`93031d6`](https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320)
785
+ - Prettier updated files [`679b9d2`](https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e)
786
+ - Updated removed files. [`84f9b8c`](https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be)
787
+ - Control descriptions updated [`56581eb`](https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe)
788
+ - Messages Theming [`ad621a3`](https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33)
789
+ - Minor less updates [`a36a8bb`](https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03)
790
+ - Tabs and lists updates [`e37eef1`](https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127)
791
+ - Form Descriptions [`de0dfbc`](https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3)
792
+ - Statistics updates [`74bf639`](https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3)
793
+ - Accordion updates [`c97ba39`](https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927)
794
+ - Accordion theming [`8061bf9`](https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9)
795
+ - Refs #142123 modified import of volto-eea-design-system icon.less: [`a7fab7d`](https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d)
796
+ - Theme assets [`3f4bea4`](https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2)
797
+ - Refs #142123 reference icon.less from this package: [`5616e6d`](https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921)
798
+ - Refs #142123 removed extra customization of semantic.less: [`ab9de81`](https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c)
799
+ - List initial [`6d3b969`](https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf)
800
+ - dropdown initial [`d8aef26`](https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9)
801
+ - global var updates and radio story [`9526ee2`](https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a)
802
+ - Segment initial [`d5724fe`](https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5)
803
+ - Card initial [`06dace5`](https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947)
804
+ - Progress Bar [`9f2efc9`](https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37)
805
+ - Container initial [`3eb7155`](https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2)
806
+ - Table and Tabs theming [`49f0860`](https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9)
807
+ - Pagination theming [`2a80175`](https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e)
808
+ - Popup updates [`ce2d641`](https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7)
809
+ - Modal and Confirm updates [`3b306c6`](https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234)
810
+ - Checkbox and radio updates [`24652a2`](https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5)
811
+ - Prettier changes on docusaurus [`5f1e5eb`](https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167)
812
+ - Button theming update [`0ec68b6`](https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8)
813
+ - Refs #142123 added customization of semantic.less: [`1e02356`](https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7)
814
+ - Refs #142123 use swap font-display for performance reasons [`083738f`](https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef)
815
+ - Item stories added description & default values [`9d459f2`](https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940)
816
+ - form elements stories added description & default values [`6b4f6eb`](https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6)
817
+ - Confirm stories added description & default value [`85cda14`](https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd)
818
+ - Comment stories added description & default value [`cb6f25b`](https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da)
819
+ - Card stories added description & default values [`f6b408f`](https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478)
820
+ - Breadcrumb stories description & defaultValue -- clean up code [`186ab65`](https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43)
821
+ - blockquote component & stories [`879b640`](https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8)
822
+ - Accrodion stories description & default value [`ab8fb88`](https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4)
823
+ - Accordion component and stories changes [`5079247`](https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38)
824
+ - Tab stories changes [`5429cfb`](https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8)
825
+ - Accordion component bug fixed [`815e91d`](https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545)
826
+ - table stories code clean up [`b7b2a56`](https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3)
827
+ - added sortable table stories and descriptions [`6d44dd7`](https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c)
828
+ - Prettier changes [`f068af0`](https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7)
829
+ - Card theming [`23bbb9d`](https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39)
830
+ - Confirm theming [`36e20ce`](https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9)
831
+ - Tab theming [`e31e6c3`](https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d)
832
+ - Button theming [`4231e1c`](https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6)
833
+ - Global variables for colors and borders added [`6e5fbd6`](https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21)
834
+ - Refs #143412 build docs only on pull request like we do with storybook [`473bb87`](https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385)
835
+ - Autobuild of docusaurus docs [`26327c6`](https://github.com/eea/volto-eea-design-system/commit/26327c68e39c602936907a1cd2d30d7f9c8870f4)
836
+ - Refs #143412 removed extra baseUrl from docusaurus config [`79f36da`](https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c)
837
+ - Autobuild of docusaurus docs [`f74b402`](https://github.com/eea/volto-eea-design-system/commit/f74b402e988d0cea552e8827e04f13239d06e1b1)
838
+ - Refs #143412 removed doc comments from api_markdown breaking doc building [`efeacba`](https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35)
839
+ - Refs #143412 removed doc comments breaking doc building [`e6a6756`](https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad)
840
+ - Refs #143412 set storyBook Url to eea.github.io [`b7fdecb`](https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74)
841
+ - Breadcrumb stories minor changes [`3d0d17c`](https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13)
842
+ - Accordion stories minor change [`ffe808a`](https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29)
843
+ - Accordion cmponent stories | minor bug fix [`6de0d81`](https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792)
844
+ - ckeckbox stories minor change [`6d6e508`](https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950)
845
+ - Card component stories minor change | added link icon [`deb423a`](https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7)
846
+ - Merged with develop [`167ec9f`](https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1)
847
+ - Docusaurus theming [`fc4a8c5`](https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401)
848
+ - Inpage nav and timeline components [`76f0f82`](https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4)
849
+ - storybook clean up code [`bffd326`](https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d)
850
+ - Table component stories minor change [`0bf4083`](https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b)
851
+ - Menu component stories change [`2797716`](https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be)
852
+ - Image stories minor change [`ddb9f1d`](https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179)
853
+ - List stories changes [`a64b304`](https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81)
854
+
855
+ #### [0.1.2-beta.2](https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2)
856
+
857
+ > 3 January 2022
858
+
859
+ - Refs #143412 linting commands call simplification: [`#6`](https://github.com/eea/volto-eea-design-system/pull/6)
860
+
861
+ #### [0.1.2-beta.1](https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1)
862
+
863
+ > 22 December 2021
864
+
865
+ - Added newly added variables related to checkboxes used by Volto [`#5`](https://github.com/eea/volto-eea-design-system/pull/5)
866
+ - Refs #143412 more eslint fixes [`a88c091`](https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c)
867
+ - Refs #143412 eslint fixes for component stories [`badcb91`](https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a)
868
+ - Refs #143412 warn for broken links instead of throwing [`bd5821c`](https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195)
869
+ - Refs #143412 merge changes from develop-itml to develop branch [`bca28b9`](https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666)
870
+ - remove test exclusion [`94dba3e`](https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25)
871
+ - Table component stories minor changes [`7c104b8`](https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3)
872
+ - Tab component stories minor changes [`4690a6f`](https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8)
873
+ - Statistic component stories minor changes [`3c874a5`](https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22)
874
+ - Segment component stories minor changes [`5f8c7ef`](https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db)
875
+ - Radio component stories minor changes [`84eac30`](https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2)
876
+ - Progress component stories minor changes [`e676357`](https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a)
877
+ - Pagination component stories minor changes [`b1af226`](https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6)
878
+ - Modal component stories minor changes [`af1fe6a`](https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04)
879
+ - Message component stories minor changes [`ba9d377`](https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca)
880
+ - Menu component stories minor changes [`cb1f9a8`](https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495)
881
+ - Image component stories minor changes [`be93385`](https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2)
882
+ - List stories changes [`0016042`](https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2)
883
+ - Label component stories changes [`5cc5843`](https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a)
884
+ - Item component stories minor changes [`6994fa0`](https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32)
885
+ - Header component stories minor changes [`264fd46`](https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12)
886
+ - Grid component stories minor changes [`798fdd0`](https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f)
887
+ - Form stories changes [`fc30c90`](https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae)
888
+ - Dropdown component stories minor changes [`57cf954`](https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60)
889
+ - Container component stories minor changes [`e6e40b3`](https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6)
890
+ - Confirn component minor changes [`9a00bc1`](https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790)
891
+ - Comment component stories minor changes [`a87cb6a`](https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e)
892
+ - Card component stories minor changes [`290bda8`](https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2)
893
+ - Button component stories minor changes [`690dfd2`](https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9)
894
+ - Breadcrumb component stories minor changes [`ff7a176`](https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df)
895
+ - Accrordion stories minor changes [`2ee3f59`](https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564)
896
+ - Accordion component stories minor changes [`e672d59`](https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1)
897
+ - renamed Demo folder to Layout [`b9f6d05`](https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12)
898
+ - fix docusaurus url (removed trailing /) [`b6c59fc`](https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada)
899
+ - made tabs dynamic for api tab [`ea37ecb`](https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f)
900
+ - List component stories - minor changes [`de11343`](https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389)
901
+ - Item component stories - minor changes [`f0a9902`](https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481)
902
+ - created stories for Grid component [`360d2a8`](https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d)
903
+ - created stories for Comment component [`a20f884`](https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11)
904
+ - Breadcrumb component stories and minor changes [`6264d92`](https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e)
905
+ - made tabs as component easy to call for other components [`07bae49`](https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba)
906
+ - created Modal component stories [`c25409d`](https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9)
907
+ - created Segment component stories [`d8d01d7`](https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a)
908
+ - created Pagination component stories [`57cdad3`](https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242)
909
+ - created Message component stories [`adcbeab`](https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c)
910
+ - created Item component stories [`90ec2be`](https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073)
911
+ - created Header component stories [`b833979`](https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3)
912
+ - eea logos and assets [`b435b51`](https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc)
913
+ - Menu stories minor changes [`6ba5e0d`](https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de)
914
+ - created Label component stories [`71732f6`](https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f)
915
+ - created Dropdown stories [`d6a2538`](https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9)
916
+ - created stories for Tab component [`95e3a73`](https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0)
917
+ - created stories for Radio component [`1fd062d`](https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c)
918
+ - created stories for Menu component [`17e3b37`](https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03)
919
+ - created stories for Image component [`3c1d2bc`](https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5)
920
+ - created stories for Container component [`41934f6`](https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288)
921
+ - created stories for semantic-ui Confirm component [`6fddccc`](https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42)
922
+ - Popup Component | minor fixes [`2ff9908`](https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec)
923
+ - created Table directory and stories based on semantic-ui Table component [`e16115d`](https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388)
924
+ - created Statistic directory and stories with semantic-ui Statistic component [`cd62498`](https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34)
925
+ - created List directory & srories based on semantic-ui List component [`51f1901`](https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d)
926
+ - Added untracked files [`75f0afd`](https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674)
927
+ - Basic storybook/Docusaurus components [`840ab60`](https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b)
928
+
929
+ #### [0.1.2-beta.0](https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0)
930
+
931
+ > 18 December 2021
932
+
933
+ - Add release notes [`#4`](https://github.com/eea/volto-eea-design-system/pull/4)
934
+ - Refs #140454 added github action to build docusaurus to the develop branch [`abe6a72`](https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677)
935
+
936
+ #### [0.1.1](https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1)
937
+
938
+ > 16 December 2021
939
+
940
+ - Add SonarQube badges and more... [`#3`](https://github.com/eea/volto-eea-design-system/pull/3)
941
+ - Add SonarQube badges [`a4e0a40`](https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062)
942
+ - Refs #140454 lint fixes [`9502f2b`](https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c)
943
+ - Refs #140454 added references to eea and the storybook in the docusaurus footer [`42bbfcd`](https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb)
944
+ - Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page [`7505df8`](https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8)
945
+ - Refs #140454 corrected base url for docusaurus website build [`98271b3`](https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a)
946
+ - Refs #140454 changed the following to volto-eea-design-system: [`6791d41`](https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0)
947
+ - Refs #140454 brought changes from develop-itml and upgrades docusaurus [`207c873`](https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa)
948
+ - Refs #140454 updated docusaurus to latest beta [`d68ed8a`](https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9)
949
+ - Refs #140454 removed extra content not needed by the docusaurus site [`bc68ebe`](https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed)
950
+ - After prettier check [`9ec40b4`](https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a)
951
+ - Initial test changes on design system/docusaurus. [`9dad612`](https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf)
952
+
953
+ #### [0.1.1-beta.0](https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0)
954
+
955
+ > 9 December 2021
956
+
957
+ - Sync Develop to master branch [`#2`](https://github.com/eea/volto-eea-design-system/pull/2)
958
+ - Refs #140454 we should use jsx and not mdx for storybook tests [`3668e66`](https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394)
959
+ - Refs #140454 removed storybook from volto-eea-design-system: [`a129ffb`](https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418)
960
+ - Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: [`1314039`](https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae)
961
+ - Refs #140454 updated Breadcrumbs.jsx to latest version: [`63fe507`](https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476)
962
+ - Refs #140454 changed the following: [`4137ec4`](https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3)
963
+ - Refs #142794 enabled minimum css so that header looks decent [`adbe233`](https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4)
964
+ - Refs #142794 added commented implementation of the header and footer area: [`773ad87`](https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39)
965
+ - Load footer in segment [`80d38a9`](https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55)
966
+ - Add demo story [`757c409`](https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66)
967
+ - Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto [`1a8b305`](https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620)
968
+ - Refs #142794 changed the following: [`fbb80b1`](https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a)
969
+ - Refs #140454 use the develop branch for the readme linking, it's always more up to date [`23dcf16`](https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3)
970
+ - Refs #140454 added missing themes reference for the eea theme [`e9ca244`](https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996)
971
+ - Refs #140454 modified assets imports after move to volto-eea-design-system [`2250cc7`](https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8)
972
+ - Refs #140454 moved header and footer templates from volto-ims-theme: [`e2d5e56`](https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222)
973
+ - Refs #140454 removed dangling comma [`514f24d`](https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54)
974
+ - Refs #140454 moved storybook scripts to the scripts section [`705c4c3`](https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d)
975
+ - Refs #140454 added storybook as a dev dependency: [`e04ae4e`](https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f)
976
+ - Refs #140454 changed link to the start of the docs [`0e16fdf`](https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf)
977
+ - Refs #140454 Renamed folders of docusaurus website: [`15bca74`](https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092)
978
+ - Refs #140454 added website folder with docusaurus site skeleton [`6fd15f4`](https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954)
979
+ - Refs #142010 - Optimize Volto-addons gitflow pipelines [`3af46d2`](https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d)
980
+ - Refs #140454 updated eea-design-system readme with extra info on package contents [`d2efc3d`](https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780)
981
+ - Refs #140454 add h1 to the list of elements that are max 800px and centered [`7d3c30f`](https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e)
982
+
983
+ #### [0.1.0](https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0)
984
+
985
+ > 17 November 2021
986
+
987
+ - Refs #141204 initial eea semantic ui theme [`#1`](https://github.com/eea/volto-eea-design-system/pull/1)
988
+ - Release 1.0.0 [`177d0ce`](https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa)
989
+ - Refs #141204 modified container width to be auto: [`2e8d2e0`](https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18)
990
+ - Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit [`f7a2868`](https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10)
991
+ - Refs #141204 removed the components customizations from volto-eea-design-system: [`c98c260`](https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d)
992
+ - Refs #141204 stylelint quick fixes [`5595925`](https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd)
993
+ - Refs #141204 changed the following to the form styling: [`eb92e05`](https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb)
994
+ - Refs #141204 use font awesome from SemanticUI instead of Pastanaga: [`4e273ca`](https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff)
995
+ - Refs #141204 changed the following to the eea theme: [`06d8d86`](https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab)
996
+ - Refs #141204 simplified container overrides: [`5125003`](https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06)
997
+ - Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px [`56a12e2`](https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7)
998
+ - Refs #141204 customized Comments.jsx to remove unnecessary container [`b2e95d7`](https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff)
999
+ - Refs #141204 modified path of theme folder location for image selection [`f8cca45`](https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4)
1000
+ - Refs #141204 removed search widget customization, we can use volto-ims-theme for that file [`b7e8b0c`](https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7)
1001
+ - Refs #141204 modified theme image imports for component customizations [`ef3238a`](https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4)
1002
+ - Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: [`ff4bf44`](https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0)
1003
+ - Refs #141204 modified several icons to use the \f values instead of \e: [`c397145`](https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6)
1004
+ - Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request [`444c78d`](https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977)
1005
+ - Refs #141204 modules folder now has the variables and overrides from pastanaga theme: [`27a201d`](https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d)
1006
+ - Refs #141204 modules folder now has the variables and overrides from pastanaga theme [`f2841b6`](https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974)
1007
+ - Refs #141204 globals folder now has the variables and overrides from pastanaga theme [`116a0c3`](https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734)
1008
+ - Refs #141204 elements folder now has the variables and overrides from pastanaga theme [`595b4e6`](https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008)
1009
+ - Refs #141204 collection folder now has the variables and overrides from pastanaga: [`213d496`](https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050)
1010
+ - Refs #141204 eea site.variables now use all values from pastanaga's site.variables [`6535c0f`](https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88)
1011
+ - Refs #141204 added main.variables entries from pastanaga to eea theme [`1cbbc55`](https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1)
1012
+ - Refs #141204 changed the following: [`2e7f423`](https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d)
1013
+ - Refs #141204 changed the following: [`769f4f9`](https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c)
1014
+ - Refs #141204 changed the following: [`c518eda`](https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0)
1015
+ - Refs #141204 text elements are now with a max width and centered within content-area: [`bbed7bb`](https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d)
1016
+ - Refs #141204 ensure that Volto doesn't crash when site module is set to eea: [`51f2f27`](https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e)
1017
+ - Refs #140454 reference font and image path from ~volto-themes instead of relative [`ec93ed3`](https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca)
1018
+ - Refs #140454 changed the following to volto-eea-design-system: [`40d2af6`](https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781)
1019
+ - Refs #132149 added initial commit for volto-eea-design-system: [`2934b91`](https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9)
1020
+
1021
+ #### 0.0.1
1022
+
1023
+ > 17 November 2021
1024
+
1025
+ - Initial commit [`b0bdd44`](https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a)