@eeacms/volto-eea-design-system 1.0.0-alpha.1 → 1.0.0-alpha.10

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 (136) hide show
  1. package/.coverage.babel.config.js +1 -5
  2. package/.i18n.babel.config.js +1 -0
  3. package/.project.eslintrc.js +8 -5
  4. package/CHANGELOG.md +310 -1
  5. package/README.md +1 -105
  6. package/RELEASE.md +74 -0
  7. package/babel.config.js +17 -0
  8. package/cypress.config.js +26 -0
  9. package/jest-addon.config.js +4 -4
  10. package/package.json +18 -16
  11. package/razzle.extend.js +7 -2
  12. package/src/index.js +1 -0
  13. package/src/semantic.less +4 -0
  14. package/src/ui/Accordion/Accordion.stories.js +167 -0
  15. package/src/ui/Banner/Banner.stories.jsx +37 -1
  16. package/src/ui/Card/Card.stories.jsx +3 -0
  17. package/src/ui/Comment/Comment.stories.js +117 -0
  18. package/src/ui/Confirm/Confirm.stories.js +97 -0
  19. package/src/ui/Container/Container.stories.js +95 -0
  20. package/src/ui/ContentBox/ContentBox.stories.js +66 -0
  21. package/src/ui/ContextNavigation/ContextNavigation.stories.jsx +97 -22
  22. package/src/ui/Copyright/Copyright.jsx +27 -0
  23. package/src/ui/Copyright/Copyright.stories.jsx +40 -0
  24. package/src/ui/Footer/Footer.stories.js +100 -0
  25. package/src/ui/Form/Checkbox.stories.js +211 -0
  26. package/src/ui/Form/Dropdown.stories.js +183 -0
  27. package/src/ui/Form/FileUpload.stories.js +46 -0
  28. package/src/ui/Form/Input.stories.js +219 -0
  29. package/src/ui/Form/Radio.stories.js +256 -0
  30. package/src/ui/Form/Textarea.stories.js +126 -0
  31. package/src/ui/Form/Toggle.stories.js +68 -0
  32. package/src/ui/Grid/ComponentGrid.stories.js +41 -0
  33. package/src/ui/Header/Header.jsx +56 -26
  34. package/src/ui/Header/Header.stories.js +1599 -0
  35. package/src/ui/Header/HeaderMenuPopUp.js +66 -32
  36. package/src/ui/Heading/Heading.stories.js +62 -0
  37. package/src/ui/Hero/Hero.jsx +20 -1
  38. package/src/ui/Hero/Hero.stories.jsx +69 -0
  39. package/src/ui/Item/Item.stories.js +242 -0
  40. package/src/ui/Item/ItemGroupWithIcons.stories.js +306 -0
  41. package/src/ui/Label/Label.stories.js +129 -0
  42. package/src/ui/List/DefaultList.stories.js +33 -0
  43. package/src/ui/List/DescriptionList.stories.js +77 -0
  44. package/src/ui/List/OrderedList.stories.js +140 -0
  45. package/src/ui/List/UnorderedList.stories.js +73 -0
  46. package/src/ui/Logo/Logo.stories.js +140 -0
  47. package/src/ui/Media/Image.stories.js +237 -0
  48. package/src/ui/Message/Message.stories.js +171 -0
  49. package/src/ui/Modal/Modal.stories.js +136 -0
  50. package/src/ui/Pagination/Pagination.stories.js +97 -0
  51. package/src/ui/Progress/Progress.stories.js +195 -0
  52. package/src/ui/Statistic/Statistic.stories.js +464 -0
  53. package/src/ui/Tab/Tab.stories.js +202 -0
  54. package/src/ui/Table/Table.stories.js +395 -0
  55. package/src/ui/TagList/TagList.jsx +4 -0
  56. package/src/ui/TagList/TagList.stories.jsx +7 -5
  57. package/src/ui/index.js +2 -0
  58. package/templates/eea.hbs +16 -9
  59. package/theme/theme.config +1 -0
  60. package/theme/themes/eea/assets/logo/eea-logo-white.svg +1 -0
  61. package/theme/themes/eea/assets/logo/eea-logo.svg +1 -0
  62. package/theme/themes/eea/assets/logo/sites/bise-logo-white.svg +54 -0
  63. package/theme/themes/eea/assets/logo/sites/bise-logo.svg +54 -0
  64. package/theme/themes/eea/assets/logo/sites/fise-logo-white.svg +45 -0
  65. package/theme/themes/eea/assets/logo/sites/fise-logo.svg +56 -0
  66. package/theme/themes/eea/assets/logo/sites/wise-freshwater-logo-white.svg +50 -0
  67. package/theme/themes/eea/assets/logo/sites/wise-freshwater-logo.svg +55 -0
  68. package/theme/themes/eea/assets/logo/sites/wise-marine-logo-white.svg +51 -0
  69. package/theme/themes/eea/assets/logo/sites/wise-marine-logo.svg +70 -0
  70. package/theme/themes/eea/definitions/elements/icon.less +1 -0
  71. package/theme/themes/eea/definitions/views/item.less +4 -8
  72. package/theme/themes/eea/elements/container.overrides +71 -10
  73. package/theme/themes/eea/elements/container.variables +1 -0
  74. package/theme/themes/eea/elements/icon.overrides +0 -4
  75. package/theme/themes/eea/elements/image.overrides +4 -0
  76. package/theme/themes/eea/elements/image.variables +1 -0
  77. package/theme/themes/eea/elements/label.variables +5 -5
  78. package/theme/themes/eea/elements/list.overrides +6 -0
  79. package/theme/themes/eea/elements/list.variables +1 -1
  80. package/theme/themes/eea/extras/avatarGrid.less +2 -0
  81. package/theme/themes/eea/extras/banner.less +5 -1
  82. package/theme/themes/eea/extras/contentBox.less +7 -7
  83. package/theme/themes/eea/extras/contextNavigation.less +20 -4
  84. package/theme/themes/eea/extras/contextNavigation.variables +8 -0
  85. package/theme/themes/eea/extras/copyright.less +29 -0
  86. package/theme/themes/eea/extras/copyright.variables +11 -0
  87. package/theme/themes/eea/extras/custom.overrides +6 -4
  88. package/theme/themes/eea/extras/downloadLabeledIcon.less +2 -0
  89. package/theme/themes/eea/extras/footer.less +3 -1
  90. package/theme/themes/eea/extras/header.less +128 -39
  91. package/theme/themes/eea/extras/header.variables +35 -10
  92. package/theme/themes/eea/extras/hero.less +9 -0
  93. package/theme/themes/eea/extras/hero.variables +5 -1
  94. package/theme/themes/eea/extras/inpageNavigation.less +2 -0
  95. package/theme/themes/eea/extras/keyContent.less +2 -0
  96. package/theme/themes/eea/extras/labeledIconGroup.less +2 -0
  97. package/theme/themes/eea/extras/languageLabeledIcon.less +2 -0
  98. package/theme/themes/eea/extras/newTabLabeledIcon.less +2 -0
  99. package/theme/themes/eea/extras/quote.less +2 -0
  100. package/theme/themes/eea/extras/relatedContent.less +2 -0
  101. package/theme/themes/eea/extras/tag.less +2 -0
  102. package/theme/themes/eea/extras/tag.variables +1 -1
  103. package/theme/themes/eea/extras/tagList.less +16 -2
  104. package/theme/themes/eea/extras/tagList.variables +3 -1
  105. package/theme/themes/eea/extras/testimonial.less +1 -0
  106. package/theme/themes/eea/extras/timeline.less +2 -0
  107. package/theme/themes/eea/globals/site.overrides +52 -0
  108. package/theme/themes/eea/globals/site.variables +4 -0
  109. package/theme/themes/eea/globals/utilities.less +6 -4
  110. package/theme/themes/eea/tokens/colors.less +1 -1
  111. package/theme/themes/eea/views/card.overrides +43 -145
  112. package/theme/themes/eea/views/card.variables +17 -28
  113. package/theme/themes/eea/views/item.overrides +67 -8
  114. package/theme/themes/eea/views/item.variables +13 -7
  115. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -50
  116. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -50
  117. package/.github/workflows/auto-comment.yml +0 -20
  118. package/.github/workflows/node.js.yml +0 -59
  119. package/.storybook/manager.js +0 -15
  120. package/cypress.json +0 -17
  121. package/mockups/EEA component library.fig +0 -0
  122. package/mockups/README.md +0 -1
  123. package/mockups/page-templates/R1 R3 templates.fig +0 -0
  124. package/mockups/page-templates/WISE BISE FISE.fig +0 -0
  125. package/mockups/page-templates/datahub/Data hub updated proposal.fig +0 -0
  126. package/mockups/page-templates/homepage_selected_upd1.fig +0 -0
  127. package/mockups/special-designs/Mega Menu.fig +0 -0
  128. package/mockups/special-designs/New footer.fig +0 -0
  129. package/mockups/special-designs/Search (Final).fig +0 -0
  130. package/mockups/special-designs/Side Navigation.fig +0 -0
  131. package/storybook-static/favicon.ico +0 -0
  132. package/theme/themes/eea/assets/images/Header/EeaLogo.png +0 -0
  133. package/theme/themes/eea/assets/images/Header/eea-logo.svg +0 -14
  134. package/theme/themes/eea/assets/logo/EEA-Logo-White-2.svg +0 -9
  135. package/theme/themes/eea/assets/logo/EEA-Logo-white.svg +0 -9
  136. package/theme/themes/eea/assets/logo/eea-white.svg +0 -14
@@ -2,11 +2,7 @@ const defaultBabel = require('@plone/volto/babel');
2
2
 
3
3
  function applyDefault(api) {
4
4
  const voltoBabel = defaultBabel(api);
5
- voltoBabel.plugins.push(
6
- '@babel/plugin-transform-modules-commonjs',
7
- 'transform-class-properties',
8
- 'istanbul',
9
- );
5
+ voltoBabel.plugins.push('istanbul');
10
6
  return voltoBabel;
11
7
  }
12
8
 
@@ -0,0 +1 @@
1
+ module.exports = require('@plone/volto/babel');
@@ -1,16 +1,17 @@
1
1
  const fs = require('fs');
2
2
  const path = require('path');
3
3
 
4
- const projectRootPath = fs.realpathSync('./project'); // __dirname
4
+ const projectRootPath = fs.existsSync('./project')
5
+ ? fs.realpathSync('./project')
6
+ : fs.realpathSync('./../../../');
5
7
  const packageJson = require(path.join(projectRootPath, 'package.json'));
6
- const jsConfig = require(path.join(projectRootPath, 'jsconfig.json'))
7
- .compilerOptions;
8
+ const jsConfig = require(path.join(projectRootPath, 'jsconfig.json')).compilerOptions;
8
9
 
9
10
  const pathsConfig = jsConfig.paths;
10
11
 
11
12
  let voltoPath = path.join(projectRootPath, 'node_modules/@plone/volto');
12
13
 
13
- Object.keys(pathsConfig).forEach((pkg) => {
14
+ Object.keys(pathsConfig).forEach(pkg => {
14
15
  if (pkg === '@plone/volto') {
15
16
  voltoPath = `./${jsConfig.baseUrl}/${pathsConfig[pkg][0]}`;
16
17
  }
@@ -19,11 +20,12 @@ const AddonConfigurationRegistry = require(`${voltoPath}/addon-registry.js`);
19
20
  const reg = new AddonConfigurationRegistry(projectRootPath);
20
21
 
21
22
  // Extends ESlint configuration for adding the aliases to `src` directories in Volto addons
22
- const addonAliases = Object.keys(reg.packages).map((o) => [
23
+ const addonAliases = Object.keys(reg.packages).map(o => [
23
24
  o,
24
25
  reg.packages[o].modulePath,
25
26
  ]);
26
27
 
28
+
27
29
  module.exports = {
28
30
  extends: `${projectRootPath}/node_modules/@plone/volto/.eslintrc`,
29
31
  settings: {
@@ -43,3 +45,4 @@ module.exports = {
43
45
  },
44
46
  },
45
47
  };
48
+
package/CHANGELOG.md CHANGED
@@ -4,7 +4,309 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
- ### [1.0.0-alpha.1](https://github.com/eea/volto-eea-design-system/compare/0.9.5...1.0.0-alpha.1) - 20 October 2022
7
+ ### [1.0.0-alpha.10](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10) - 12 January 2023
8
+
9
+ #### :bug: Bug Fixes
10
+
11
+ - fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes [ichim-david - [`8f6cf94`](https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06)]
12
+ - fix(subsite): Fix logo size on subsite section [kreafox - [`65fff54`](https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211)]
13
+ - fix(mega-menu): show sub grid only if there are children [David Ichim - [`ddfbd82`](https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8)]
14
+
15
+ #### :hammer_and_wrench: Others
16
+
17
+ - Release 1.0.0-alpha.10 [Alin Voinea - [`7014d08`](https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971)]
18
+ - Add variable definitions [kreafox - [`293fe65`](https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e)]
19
+ - Back to dev [Alin Voinea - [`31d4616`](https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe)]
20
+ ### [1.0.0-alpha.9](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9) - 28 December 2022
21
+
22
+ #### :nail_care: Enhancements
23
+
24
+ - change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title [ichim-david - [`ef7bdb7`](https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c)]
25
+
26
+ #### :hammer_and_wrench: Others
27
+
28
+ - Show document and folder content-type in Navigation listing [andreiggr - [`8471db3`](https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247)]
29
+ - Context nav title link to # [andreiggr - [`a27a6b7`](https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52)]
30
+ - Default title is text, custom title is link [andreiggr - [`1ae95b0`](https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d)]
31
+ ### [1.0.0-alpha.8](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8) - 23 December 2022
32
+
33
+ #### :rocket: New Features
34
+
35
+ - feat(copyright): Align copyright options with Volto integration - refs #158210 [Alin Voinea - [`6bac7f6`](https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63)]
36
+
37
+ #### :nail_care: Enhancements
38
+
39
+ - change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg [David Ichim - [`2796e05`](https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37)]
40
+ - change(item): removed requirement for aligned classes to be on content [David Ichim - [`30c0d5d`](https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31)]
41
+ - change(item): use default logic of setting align class on content [David Ichim - [`6b5b47c`](https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225)]
42
+ - refactor(logos): convert storybook logo names to lowercase [Antonis Tarantilis - [`c4b24ec`](https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c)]
43
+ - refactor(logos): convert logo names to lowercase [Antonis Tarantilis - [`07b8228`](https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16)]
44
+ - refactor(logo): import theme site logos to the story [Antonis Tarantilis - [`2f29136`](https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402)]
45
+ - refactor(logo): add eea roboto font logo variations [Antonis Tarantilis - [`de1224a`](https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4)]
46
+ - refactor(logo): add container and segment to logo story [Antonis Tarantilis - [`61eff16`](https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c)]
47
+ - refactor(logo): update logo and mega search gradient [Antonis Tarantilis - [`e11f44d`](https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022)]
48
+ - refactor(logo): update logo [Antonis Tarantilis - [`170efe5`](https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6)]
49
+
50
+ #### :house: Internal changes
51
+
52
+ - chore(npmignore): Reduce npmjs package size [Alin Voinea - [`164c8a5`](https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93)]
53
+ - chore(npmignore): Reduce npmjs package size [Alin Voinea - [`ade9d5b`](https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be)]
54
+ - chore(docs): renamed logo mdx to md [Giorgos Stamatis - [`52e9d46`](https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616)]
55
+
56
+ #### :house: Documentation changes
57
+
58
+ - docs(logo): update eea logos and add logo wrapper [Antonis Tarantilis - [`91cdd66`](https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45)]
59
+ - docs(logo): update logos on docusaurus [Antonis Tarantilis - [`760e101`](https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf)]
60
+ - docs(logos): add dark mode logos [Dora Anastasiou - [`ccc1609`](https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e)]
61
+ - docs(logos): change eea logo to svg [Giorgos Stamatis - [`f57b846`](https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f)]
62
+ - docs(logos): add zipped svgs for download [Giorgos Stamatis - [`5855bf8`](https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44)]
63
+ - docs(logos): move to static, add download [Dora Anastasiou - [`8c1fd5f`](https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393)]
64
+ - docs(logos): wisef logo update [Dora Anastasiou - [`8f90b59`](https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f)]
65
+ - docs(logos): updated svgs [Dora Anastasiou - [`dc224e1`](https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27)]
66
+ - docs(logos): svgs without classes [Dora Anastasiou - [`28a5833`](https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e)]
67
+ - docs(logos): improve eea logo visibility [Dora Anastasiou - [`82188ab`](https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c)]
68
+ - docs(logos): add thematic logos [Dora Anastasiou - [`5a21a30`](https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255)]
69
+
70
+ #### :hammer_and_wrench: Others
71
+
72
+ - logo update or docusaurus thematic logo listing #274 from eea/develop [ichim-david - [`dde90be`](https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094)]
73
+ - bump package version [David Ichim - [`b4628be`](https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989)]
74
+ - feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page [ichim-david - [`dbfc90d`](https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d)]
75
+ - (feat): Add ability to disable the language select from website top menu - refs #158616 [dobri1408 - [`411c8e4`](https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329)]
76
+ - test(Jenkins): Run tests and cypress with latest canary @plone/volto [Alin Voinea - [`92feea0`](https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215)]
77
+ - Proof reading page header section [ichim-david - [`230239e`](https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244)]
78
+ ### [1.0.0-alpha.7](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7) - 16 December 2022
79
+
80
+ #### :rocket: New Features
81
+
82
+ - feat(item): normalized size for image or icon items #258 from eea/refactor-items [ichim-david - [`945170f`](https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037)]
83
+
84
+ #### :bug: Bug Fixes
85
+
86
+ - fix(item): removed margin set for description which pushed the text from icon [David Ichim - [`d9d4031`](https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518)]
87
+ - fix(card): rounded after removal of has--rounded--true style class [David Ichim - [`d4727af`](https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183)]
88
+ - fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths [ichim-david - [`0f8ee8d`](https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8)]
89
+
90
+ #### :nail_care: Enhancements
91
+
92
+ - change(item): added tiny size that outputs 24px icon sizes [David Ichim - [`2ea9636`](https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493)]
93
+ - change(image): added preview image size default to 400px [David Ichim - [`a0aa867`](https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e)]
94
+ - change(item): rename large to big class [David Ichim - [`24ff127`](https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d)]
95
+ - change(item): set same height as width on item images [David Ichim - [`69cbd23`](https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305)]
96
+ - refactor(item): update item part 2 [Antonis Tarantilis - [`9812ae2`](https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f)]
97
+ - refactor(item): update spacing [Antonis Tarantilis - [`2fd91c4`](https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1)]
98
+ - refactor(item): update icon variations and paddings [Antonis Tarantilis - [`6a407b3`](https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6)]
99
+ - refactor(item): update image and icon sizes [Antonis Tarantilis - [`b802573`](https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618)]
100
+ - refactor(item): initial values for new sizes & add description class [Antonis Tarantilis - [`3546296`](https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05)]
101
+ - refactor(item): update operator for condition controls [Antonis Tarantilis - [`149ccb2`](https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e)]
102
+ - refactor(item): add icon and more size options [Antonis Tarantilis - [`1120bb6`](https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece)]
103
+
104
+ #### :hammer_and_wrench: Others
105
+
106
+ - Release 1.0.0-alpha.7 [Alin Voinea - [`7e66bcc`](https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a)]
107
+ - added back descriptionDistance variable until package release [David Ichim - [`3af811a`](https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da)]
108
+ - Back to dev [Alin Voinea - [`cb531c9`](https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c)]
109
+ - Proper paths if the package is not installed, but in development [Tiberiu Ichim - [`7a2655f`](https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832)]
110
+ - Update .project.eslintrc.js [ichim-david - [`a2fd3f2`](https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce)]
111
+ ### [1.0.0-alpha.6](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6) - 7 December 2022
112
+
113
+ #### :rocket: New Features
114
+
115
+ - feat(Header): add hideSearch prop [Miu Razvan - [`13ddfe5`](https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea)]
116
+ - feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info [ichim-david - [`2119515`](https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3)]
117
+ - feat(copyright): create copyright component and import it in banner [Antonis Tarantilis - [`8fcde9d`](https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75)]
118
+
119
+ #### :bug: Bug Fixes
120
+
121
+ - fix(tags): content gap when using tags-content wrapper [David Ichim - [`c4eb9b8`](https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af)]
122
+
123
+ #### :nail_care: Enhancements
124
+
125
+ - change(copyright): removed copyrightVariant from Banner and Hero stories [David Ichim - [`ac62e07`](https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107)]
126
+ - change(copyright): now uses text color css variable with fallback to white [David Ichim - [`ee7268b`](https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94)]
127
+ - change(copyright): removed color variant [David Ichim - [`747b8a2`](https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9)]
128
+ - change(copyright): line height to match page header implementation [David Ichim - [`a56254e`](https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c)]
129
+ - change(copyright): implementation to add classes on content sections [David Ichim - [`e10bde6`](https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe)]
130
+ - change(tagList): modified implementation to align to volto-tags-block [David Ichim - [`7a57a3d`](https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c)]
131
+ - refactor(hero): add copyright component to hero [Antonis Tarantilis - [`0fa88fa`](https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949)]
132
+ - refactor(copyright): remove data section [Antonis Tarantilis - [`52cb09d`](https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d)]
133
+
134
+ #### :house: Documentation changes
135
+
136
+ - docs(copyright): copyright documentation [Dora Anastasiou - [`a90ed76`](https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3)]
137
+
138
+ #### :hammer_and_wrench: Others
139
+
140
+ - Release 1.0.0-alpha.6 [Alin Voinea - [`6ca32f0`](https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95)]
141
+ - feature(copyright): image information #250 from eea/feature-copyright [ichim-david - [`a8618c7`](https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb)]
142
+ - lint fix by introducing local variable tagsGap [David Ichim - [`7b6c0ae`](https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99)]
143
+ - grammar fixes [ichim-david - [`cb2a5a5`](https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2)]
144
+ - Update usage_markdown.md [ichim-david - [`f76d4a2`](https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1)]
145
+ - Update 3-images.md [ichim-david - [`1b0ef03`](https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473)]
146
+ ### [1.0.0-alpha.5](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5) - 29 November 2022
147
+
148
+ #### :rocket: New Features
149
+
150
+ - feat(Iconography): import and showcase remix icons [Antonis Tarantilis - [`777112f`](https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04)]
151
+
152
+ #### :bug: Bug Fixes
153
+
154
+ - fix(contentBox): avoid text decoration for header-link added on cards [David Ichim - [`3ccb592`](https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761)]
155
+ - fix(label): color for yellow variant as white isn't accessible on yellow color [David Ichim - [`91d8880`](https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c)]
156
+ - fix(label): margin value for ribbon image left and right margin [David Ichim - [`f8e1129`](https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20)]
157
+ - fix(lists): bullet position by using padding instead of margin [David Ichim - [`0ecae2e`](https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799)]
158
+ - fix(docusaurus): right bar overflow fix [Manthos Matzios - [`197c763`](https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3)]
159
+
160
+ #### :nail_care: Enhancements
161
+
162
+ - change(tag): set gap on tags element for margin between tag elements [David Ichim - [`726bc6d`](https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b)]
163
+ - refactor(docusaurus): move supplementary, state and link colors to partials [Giorgos Stamatis - [`2776be3`](https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b)]
164
+ - refactor(docusaurus): fix side menu / moved more content in palette partial [Giorgos Stamatis - [`f5b7077`](https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f)]
165
+ - refactor(docusaurus): eea color palette in separate file [Giorgos Stamatis - [`6c855df`](https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e)]
166
+ - refactor(docusaurus): classes for color boxes [Giorgos Stamatis - [`80219d5`](https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c)]
167
+ - perf(docusaurus): added remixicon and roboto locally [Giorgos Stamatis - [`b67b1a7`](https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558)]
168
+
169
+ #### :house: Internal changes
170
+
171
+ - chore(colours): fix wrong class name [Giorgos Stamatis - [`51ad0a8`](https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d)]
172
+
173
+ #### :house: Documentation changes
174
+
175
+ - docs(colors): switch FISE logo to png [Giorgos Stamatis - [`335471f`](https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5)]
176
+ - docs(colours): adjust logos heights [Antonis Tarantilis - [`854d4fb`](https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5)]
177
+ - docs(colors): thematic pages integration [Dora Anastasiou - [`ea7a422`](https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595)]
178
+ - docs(colors): fix swatches accessibility [Dora Anastasiou - [`306cb74`](https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5)]
179
+ - docs(typography): merge designer and dev units [Giorgos Stamatis - [`65c240e`](https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca)]
180
+ - docs(colors): updated visited [Dora Anastasiou - [`0248fd1`](https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d)]
181
+ - docs(FISE): replaced logo [Giorgos Stamatis - [`f7d8331`](https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08)]
182
+ - docs(colors): blue-grey-6 adjustment [Giorgos Stamatis - [`e7ab2d1`](https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a)]
183
+ - docs(docusaurus): typography and colors fixes according to comments on PR [Manthos Matzios - [`ae20a72`](https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456)]
184
+ - docs(typography): readded extra font sizes, fixed fluid [Manthos Matzios - [`a4a5d89`](https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810)]
185
+ - docs(colors): minors updates and instructions [Manthos Matzios - [`84ac882`](https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145)]
186
+ - docs(docusaurus): Iconography updates, thematic platforms [Dora Anastasiou - [`2a0e596`](https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59)]
187
+ - docs(colours): added active colour [Manthos Matzios - [`574f7a9`](https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738)]
188
+ - docs(typography): changed em to percentages [Manthos Matzios - [`d417600`](https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe)]
189
+ - docs(docusaurus): color updates [Manthos Matzios - [`cc13b54`](https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643)]
190
+
191
+ #### :hammer_and_wrench: Others
192
+
193
+ - feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus [ichim-david - [`ec7843d`](https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3)]
194
+ - Back to dev [Alin Voinea - [`563fbc5`](https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a)]
195
+ - perf(docusaurus): added remixicon and roboto locally [Giorgos Stamatis - [`b67b1a7`](https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558)]
196
+ ### [1.0.0-alpha.4](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4) - 22 November 2022
197
+
198
+ #### :bug: Bug Fixes
199
+
200
+ - fix(cards-storybook): load slick carousel css for arrow and pagination styles [David Ichim - [`1159b1b`](https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa)]
201
+
202
+ #### :nail_care: Enhancements
203
+
204
+ - change(utilities): added has text classes to the text alignment utilities [David Ichim - [`e6974c6`](https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a)]
205
+ - change(build): upgrade action to trigger workflow and wait to latest version [David Ichim - [`c63ad3f`](https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086)]
206
+ - refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring [ichim-david - [`24edc99`](https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5)]
207
+ - change(utilities): modified class name for text align using has naming [David Ichim - [`579a0cb`](https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5)]
208
+ - change(theme): ensure that only direct children of container have a default top and bottom margin [David Ichim - [`7f8b8dc`](https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc)]
209
+ - change(theme): add slick-carousel dependency [David Ichim - [`f2eec7d`](https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c)]
210
+ - change(card): expect has classes on the card directly [David Ichim - [`6a9e38b`](https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee)]
211
+ - change(cards): allow rounded, inverted and theme parameter to be set by has classes [David Ichim - [`4b4ad89`](https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885)]
212
+ - change(cards): refactor cards theming implementation [David Ichim - [`d4e4542`](https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189)]
213
+
214
+ #### :hammer_and_wrench: Others
215
+
216
+ - Exclude mockups from npm package [Alin Voinea - [`634af8e`](https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc)]
217
+ - Update eea.github.io on all commits in develop branch [Alin Voinea - [`3d0b8d7`](https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04)]
218
+ - Trigger re-build [Alin Voinea - [`3566dd2`](https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50)]
219
+ - fix rounded selector [David Ichim - [`1fa1544`](https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a)]
220
+ - Back to dev. [Alin Voinea - [`ea47f6f`](https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4)]
221
+ ### [1.0.0-alpha.3](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3) - 16 November 2022
222
+
223
+ #### :rocket: New Features
224
+
225
+ - feat(Header): Add subsite section styling #263 from eea/subsite [ichim-david - [`00398b8`](https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480)]
226
+
227
+ #### :bug: Bug Fixes
228
+
229
+ - fix(search): position now changed by default to absolute from relative [David Ichim - [`51b08fc`](https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7)]
230
+ - fix(megaMenu): remove paddings for buttons added by active class [Antonis Tarantilis - [`ec33ebf`](https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b)]
231
+
232
+ #### :nail_care: Enhancements
233
+
234
+ - change(mega-menu): hide home link and accordion content from mobile menu [David Ichim - [`1a69172`](https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9)]
235
+ - change(container): width from min width 1280px to 1365px max width [David Ichim - [`66e551e`](https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4)]
236
+ - change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 [David Ichim - [`8f82573`](https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0)]
237
+ - change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 [David Ichim - [`2349fee`](https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834)]
238
+ - change(container): fullwidth now take into account devices without hover [David Ichim - [`5a35a65`](https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8)]
239
+ - change(container): ensure only the top level elements behave like containers [David Ichim - [`98b85d1`](https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3)]
240
+ - change(container): modified column-block grid to remove margin and padding when using full width class [David Ichim - [`35c1cee`](https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3)]
241
+ - change(components): load overrides files for our defined semantic files [David Ichim - [`adde7a9`](https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2)]
242
+ - change(container): story to avoid adding containerwidth property to container div [David Ichim - [`c13d83c`](https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c)]
243
+ - change(container): story to add classes that modify the max width of the containers [David Ichim - [`37948f8`](https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331)]
244
+ - change(container): renamed content-text-width to container-text-width [David Ichim - [`6f788c2`](https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8)]
245
+ - change(container): removed app extras and view setting of layout sizes [David Ichim - [`f6dc1ee`](https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1)]
246
+ - change(homepage): removed hiding of staging banner from homepage [David Ichim - [`4ba2cd7`](https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba)]
247
+ - change(site): add a 1rem margin top and bottom on all styled classes [David Ichim - [`dabf6c1`](https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56)]
248
+ - change(container): use important flag for left and right margin [David Ichim - [`a49c83a`](https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3)]
249
+ - change(views): moved narrow style bellow the default container width styles [David Ichim - [`72fa58d`](https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8)]
250
+ - change(view): set container width for view-viewview class as well [David Ichim - [`29dc324`](https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56)]
251
+ - change(listing): provide ui container fallback if no class is passed to default view [David Ichim - [`af9e94d`](https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5)]
252
+ - change(narrow-view): re-added container class to page-document [David Ichim - [`56b44a6`](https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f)]
253
+ - change(container): unset values of page-document on 1200+ browser width [David Ichim - [`dd5bea3`](https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08)]
254
+ - change(container): affect only left and right margin of containers [David Ichim - [`183265b`](https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75)]
255
+ - change(containers): modified class names after layout checks [David Ichim - [`1dc3689`](https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a)]
256
+ - change(listing): removed container from default view page-document area [David Ichim - [`69f3d8f`](https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf)]
257
+ - change(views): rename classes names to width_view and added app extras layout component [David Ichim - [`745b772`](https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2)]
258
+ - change(container): add variables for edit and add section of containers [David Ichim - [`f2e2c33`](https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7)]
259
+ - change(columns): implement narrow, container and wide width classes [David Ichim - [`9696b54`](https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439)]
260
+ - change(views): customized DefaultView to pass class into page-document area [David Ichim - [`91123aa`](https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581)]
261
+ - change(megamenu): set children to be appended to the right of the menu title [David Ichim - [`b69c23a`](https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941)]
262
+ - refactor(sidemenu): add is_in_path and is_current attributes for an active example [Antonis Tarantilis - [`a3fe7fd`](https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568)]
263
+ - refactor(sidemenu): add third level list and items & update active indication [Antonis Tarantilis - [`e2d87da`](https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61)]
264
+ - refactor(megaMenu): update padding variables [Antonis Tarantilis - [`c5f2583`](https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8)]
265
+ - refactor(megaMenu): update sub-title paddings [Antonis Tarantilis - [`992f919`](https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400)]
266
+ - refactor(megaMenu): style sub-title and nav-description [Antonis Tarantilis - [`b2a48fd`](https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92)]
267
+ - refactor(megaMenu): add nav_title and nav_description attributes [Antonis Tarantilis - [`0d7a568`](https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448)]
268
+ - refactor(megaMenu): mobile - use buttons for menu section titles [Antonis Tarantilis - [`a7b632f`](https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659)]
269
+ - refactor(megaMenu): desktop - use buttons for menu section titles and readjust content [Antonis Tarantilis - [`cb9315f`](https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899)]
270
+
271
+ #### :house: Internal changes
272
+
273
+ - style: load header/footer overrides [Miu Razvan - [`e5b5e0f`](https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c)]
274
+ - style(megaMenu): restore item description color [Antonis Tarantilis - [`8a19bbb`](https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7)]
275
+ - style(megaMenu): restore accordion content bottom padding [Antonis Tarantilis - [`8e0c5a7`](https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec)]
276
+
277
+ #### :hammer_and_wrench: Others
278
+
279
+ - Release 1.0.0-alpha.3 [Alin Voinea - [`8fc86a7`](https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878)]
280
+ - code cleanup [David Ichim - [`2cdc3e5`](https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0)]
281
+ - Add subsite styling [kreafox - [`e79c0ed`](https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3)]
282
+ - test(estlint): Fix .project.eslintrc.js [Alin Voinea - [`aaeaa07`](https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec)]
283
+ - modified left value of full width classes with toolbars [David Ichim - [`70d82d4`](https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae)]
284
+ - WIP settings column grid width when using full size class [David Ichim - [`affc7ac`](https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404)]
285
+ - fix eslint [Miu Razvan - [`30c52e4`](https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b)]
286
+ - fix broken variable call for contentBox.variables introduced in previous commit by mistake [David Ichim - [`d249c11`](https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4)]
287
+ - clean up [Miu Razvan - [`89f3cb3`](https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c)]
288
+ - Feature(container): flexible container size #260 from eea/feature-flexible-container [ichim-david - [`8f84c5b`](https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a)]
289
+ - removed console log from code [David Ichim - [`fad86ae`](https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb)]
290
+ - jslint fix [David Ichim - [`9846159`](https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd)]
291
+ - feature(content): added NarrowView useful for modifying the containers from content-area [David Ichim - [`d937df7`](https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657)]
292
+ ### [1.0.0-alpha.2](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2) - 28 October 2022
293
+
294
+ #### :nail_care: Enhancements
295
+
296
+ - refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 [Alin Voinea - [`853d9d1`](https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4)]
297
+ - change(documentation): grammarly proof-read suggestions [David Ichim - [`9f609be`](https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9)]
298
+
299
+ #### :house: Internal changes
300
+
301
+ - chore(docs): Back to dev [Alin Voinea - [`e33113a`](https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c)]
302
+
303
+ #### :hammer_and_wrench: Others
304
+
305
+ - test(cypress): Upgrade to Cypress 10 / Razzle 4 [Alin Voinea - [`c1c1f4b`](https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9)]
306
+ - Update dependencies [Alin Voinea - [`ee30a2b`](https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e)]
307
+ - add announcement bar, showing that EEA DS is WIP [Antonio De Marinis - [`e14aeac`](https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9)]
308
+ - more explanations [Antonio De Marinis - [`a8b2272`](https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b)]
309
+ ### [1.0.0-alpha.1](https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1) - 20 October 2022
8
310
 
9
311
  #### :nail_care: Enhancements
10
312
 
@@ -25,6 +327,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
25
327
  #### :hammer_and_wrench: Others
26
328
 
27
329
  - Release 1.0.0-alpha.1 [Alin Voinea - [`70e4d97`](https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476)]
330
+ ### [0.9.6](https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6) - 16 December 2022
331
+
332
+ #### :hammer_and_wrench: Others
333
+
334
+ - Release 0.9.6 [Alin Voinea - [`ae19b83`](https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50)]
335
+ - Release-it [Alin Voinea - [`1f5671d`](https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5)]
336
+ - feature(copyright): image information #250 from eea/feature-copyright [ichim-david - [`7b323ed`](https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1)]
28
337
  ### [0.9.5](https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5) - 20 October 2022
29
338
 
30
339
  #### :bug: Bug Fixes
package/README.md CHANGED
@@ -27,39 +27,6 @@ This package provides the following features:
27
27
 
28
28
  ## Getting started
29
29
 
30
- ### Try volto-eea-design-system with Docker
31
-
32
- 1. Get the latest Docker images
33
-
34
- ```
35
- docker pull plone
36
- docker pull plone/volto
37
- ```
38
-
39
- 2. Start Plone backend
40
- ```
41
- docker run -v $(pwd)/var:/data -e SITE=Plone -p 8080:8080 -e PROFILES="profile-plone.restapi:blocks" --name eea-plone -it --rm plone fg
42
- ```
43
- 3. Wait until you get the following message:
44
-
45
- ```
46
- Serving on http://0.0.0.0:8080
47
- ```
48
-
49
- 4. Start Volto frontend
50
-
51
- ```
52
- docker run -it --rm -p 3000:3000 --link eea-plone -e ADDONS="@eeacms/volto-eea-design-system" plone/volto
53
- ```
54
-
55
- 5. Wait until you get the following message:
56
-
57
- ```
58
- Volto started at http://localhost:8080
59
- ```
60
-
61
- 6. Go to http://localhost:3000, login with admin:admin if you need to edit the site.
62
-
63
30
  ### Add volto-eea-design-system to your Volto project
64
31
 
65
32
  1. Make sure you have a [Plone backend](https://plone.org/download) up-and-running at http://localhost:8080/Plone
@@ -107,78 +74,7 @@ Checkout the docs found within the [mockups](https://github.com/eea/volto-eea-de
107
74
 
108
75
  ## Release
109
76
 
110
- ### Automatic release using Jenkins
111
-
112
- * The automatic release is started by creating a [Pull Request](../../compare/master...develop) from `develop` to `master`. The pull request status checks correlated to the branch and PR Jenkins jobs need to be processed successfully. 1 review from a github user with rights is mandatory.
113
- * It runs on every commit on `master` branch, which is protected from direct commits, only allowing pull request merge commits.
114
- * The automatic release is done by [Jenkins](https://ci.eionet.europa.eu). The status of the release job can be seen both in the Readme.md badges and the green check/red cross/yellow circle near the last commit information. If you click on the icon, you will have the list of checks that were run. The `continuous-integration/jenkins/branch` link goes to the Jenkins job execution webpage.
115
- * Automated release scripts are located in the `eeacms/gitflow` docker image, specifically [js-release.sh](https://github.com/eea/eea.docker.gitflow/blob/master/src/js-release.sh) script. It uses the `release-it` tool.
116
- * As long as a PR request is open from develop to master, the PR Jenkins job will automatically re-create the CHANGELOG.md and package.json files to be production-ready.
117
- * The version format must be MAJOR.MINOR.PATCH. By default, next release is set to next minor version (with patch 0).
118
- * You can manually change the version in `package.json`. The new version must not be already present in the tags/releases of the repository, otherwise it will be automatically increased by the script. Any changes to the version will trigger a `CHANGELOG.md` re-generation.
119
- * Automated commits and commits with [JENKINS] or [YARN] in the commit log are excluded from `CHANGELOG.md` file.
120
-
121
- ### Manual release from the develop branch ( beta release )
122
-
123
- #### Installation and configuration of release-it
124
-
125
- You need to first install the [release-it](https://github.com/release-it/release-it) client.
126
-
127
- ```
128
- npm install -g release-it
129
- ```
130
-
131
- Release-it uses the configuration written in the [`.release-it.json`](./.release-it.json) file located in the root of the repository.
132
-
133
- Release-it is a tool that automates 4 important steps in the release process:
134
-
135
- 1. Version increase in `package.json` ( increased from the current version in `package.json`)
136
- 2. `CHANGELOG.md` automatic generation from commit messages ( grouped by releases )
137
- 3. GitHub release on the commit with the changelog and package.json modification on the develop branch
138
- 4. NPM release ( by default it's disabled, but can be enabled in the configuration file )
139
-
140
- To configure the authentification, you need to export GITHUB_TOKEN for [GitHub](https://github.com/settings/tokens)
141
-
142
- ```
143
- export GITHUB_TOKEN=XXX-XXXXXXXXXXXXXXXXXXXXXX
144
- ```
145
-
146
- To configure npm, you can use the `npm login` command or use a configuration file with a TOKEN :
147
-
148
- ```
149
- echo "//registry.npmjs.org/:_authToken=YYYYYYYYYYYYYYYYYYYYYYYYYYYYYY" > .npmrc
150
- ```
151
-
152
- #### Using release-it tool
153
-
154
- There are 3 yarn scripts that can be run to do the release
155
-
156
- ##### yarn release-beta
157
-
158
- Automatically calculates and presents 3 beta versions - patch, minor and major for you to choose ( or Other for manual input).
159
-
160
- ```
161
- ? Select increment (next version):
162
- ❯ prepatch (0.1.1-beta.0)
163
- preminor (0.2.0-beta.0)
164
- premajor (1.0.0-beta.0)
165
- Other, please specify...
166
- ```
167
-
168
- ##### yarn release-major-beta
169
-
170
- Same as `yarn release-beta`, but with premajor version pre-selected.
171
-
172
- ##### yarn release
173
-
174
- Generic command, does not automatically add the `beta` to version, but you can still manually write it if you choose Other.
175
-
176
- #### Important notes
177
-
178
- > Do not use release-it tool on master branch, the commit on CHANGELOG.md file and the version increase in the package.json file can't be done without a PULL REQUEST.
179
-
180
- > Do not keep Pull Requests from develop to master branches open when you are doing beta releases from the develop branch. As long as a PR to master is open, an automatic script will run on every commit and will update both the version and the changelog to a production-ready state - ( MAJOR.MINOR.PATCH mandatory format for version).
181
-
77
+ See [RELEASE.md](https://github.com/eea/volto-eea-design-system/blob/master/RELEASE.md).
182
78
 
183
79
  ## How to contribute
184
80
 
package/RELEASE.md ADDED
@@ -0,0 +1,74 @@
1
+ ## Release
2
+
3
+ ### Automatic release using Jenkins
4
+
5
+ * The automatic release is started by creating a [Pull Request](../../compare/master...develop) from `develop` to `master`. The pull request status checks correlated to the branch and PR Jenkins jobs need to be processed successfully. 1 review from a github user with rights is mandatory.
6
+ * It runs on every commit on `master` branch, which is protected from direct commits, only allowing pull request merge commits.
7
+ * The automatic release is done by [Jenkins](https://ci.eionet.europa.eu). The status of the release job can be seen both in the Readme.md badges and the green check/red cross/yellow circle near the last commit information. If you click on the icon, you will have the list of checks that were run. The `continuous-integration/jenkins/branch` link goes to the Jenkins job execution webpage.
8
+ * Automated release scripts are located in the `eeacms/gitflow` docker image, specifically [js-release.sh](https://github.com/eea/eea.docker.gitflow/blob/master/src/js-release.sh) script. It uses the `release-it` tool.
9
+ * As long as a PR request is open from develop to master, the PR Jenkins job will automatically re-create the CHANGELOG.md and package.json files to be production-ready.
10
+ * The version format must be MAJOR.MINOR.PATCH. By default, next release is set to next minor version (with patch 0).
11
+ * You can manually change the version in `package.json`. The new version must not be already present in the tags/releases of the repository, otherwise it will be automatically increased by the script. Any changes to the version will trigger a `CHANGELOG.md` re-generation.
12
+ * Automated commits and commits with [JENKINS] or [YARN] in the commit log are excluded from `CHANGELOG.md` file.
13
+
14
+ ### Manual release from the develop branch ( beta release )
15
+
16
+ #### Installation and configuration of release-it
17
+
18
+ You need to first install the [release-it](https://github.com/release-it/release-it) client.
19
+
20
+ ```
21
+ npm install -g release-it
22
+ ```
23
+
24
+ Release-it uses the configuration written in the [`.release-it.json`](./.release-it.json) file located in the root of the repository.
25
+
26
+ Release-it is a tool that automates 4 important steps in the release process:
27
+
28
+ 1. Version increase in `package.json` ( increased from the current version in `package.json`)
29
+ 2. `CHANGELOG.md` automatic generation from commit messages ( grouped by releases )
30
+ 3. GitHub release on the commit with the changelog and package.json modification on the develop branch
31
+ 4. NPM release ( by default it's disabled, but can be enabled in the configuration file )
32
+
33
+ To configure the authentification, you need to export GITHUB_TOKEN for [GitHub](https://github.com/settings/tokens)
34
+
35
+ ```
36
+ export GITHUB_TOKEN=XXX-XXXXXXXXXXXXXXXXXXXXXX
37
+ ```
38
+
39
+ To configure npm, you can use the `npm login` command or use a configuration file with a TOKEN :
40
+
41
+ ```
42
+ echo "//registry.npmjs.org/:_authToken=YYYYYYYYYYYYYYYYYYYYYYYYYYYYYY" > .npmrc
43
+ ```
44
+
45
+ #### Using release-it tool
46
+
47
+ There are 3 yarn scripts that can be run to do the release
48
+
49
+ ##### yarn release-beta
50
+
51
+ Automatically calculates and presents 3 beta versions - patch, minor and major for you to choose ( or Other for manual input).
52
+
53
+ ```
54
+ ? Select increment (next version):
55
+ ❯ prepatch (0.1.1-beta.0)
56
+ preminor (0.2.0-beta.0)
57
+ premajor (1.0.0-beta.0)
58
+ Other, please specify...
59
+ ```
60
+
61
+ ##### yarn release-major-beta
62
+
63
+ Same as `yarn release-beta`, but with premajor version pre-selected.
64
+
65
+ ##### yarn release
66
+
67
+ Generic command, does not automatically add the `beta` to version, but you can still manually write it if you choose Other.
68
+
69
+ #### Important notes
70
+
71
+ > Do not use release-it tool on master branch, the commit on CHANGELOG.md file and the version increase in the package.json file can't be done without a PULL REQUEST.
72
+
73
+ > Do not keep Pull Requests from develop to master branches open when you are doing beta releases from the develop branch. As long as a PR to master is open, an automatic script will run on every commit and will update both the version and the changelog to a production-ready state - ( MAJOR.MINOR.PATCH mandatory format for version).
74
+
@@ -0,0 +1,17 @@
1
+ module.exports = function (api) {
2
+ api.cache(true);
3
+ const presets = ['razzle'];
4
+ const plugins = [
5
+ [
6
+ 'react-intl', // React Intl extractor, required for the whole i18n infrastructure to work
7
+ {
8
+ messagesDir: './build/messages/',
9
+ },
10
+ ],
11
+ ];
12
+
13
+ return {
14
+ plugins,
15
+ presets,
16
+ };
17
+ };