@eeacms/volto-eea-website-theme 0.6.11 → 0.6.12

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.
package/CHANGELOG.md CHANGED
@@ -4,8 +4,15 @@ 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
+ #### [0.6.12](https://github.com/eea/volto-eea-website-theme/compare/0.6.11...0.6.12)
8
+
9
+ - change(footer): updated logos order and added climate observatory [`96ddddf`](https://github.com/eea/volto-eea-website-theme/commit/96ddddffd0530ffb10d50a1d011f82bb97e6ba2b)
10
+
7
11
  #### [0.6.11](https://github.com/eea/volto-eea-website-theme/compare/0.6.10...0.6.11)
8
12
 
13
+ > 16 June 2022
14
+
15
+ - content box fixes [`#43`](https://github.com/eea/volto-eea-website-theme/pull/43)
9
16
  - change(website): removed container from styles that implement content-box [`c513000`](https://github.com/eea/volto-eea-website-theme/commit/c513000ce374f3209f57a3d050c29a0fbff0916c)
10
17
  - Optimize Content Box SVG [`ba0d417`](https://github.com/eea/volto-eea-website-theme/commit/ba0d417ad30bfb3994855716d0d387463317d24e)
11
18
  - Add preview for Content Box preset styles [`cbed054`](https://github.com/eea/volto-eea-website-theme/commit/cbed05403113cb46bc2ed63dd9c47fc6168ac492)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-eea-website-theme",
3
- "version": "0.6.11",
3
+ "version": "0.6.12",
4
4
  "description": "@eeacms/volto-eea-website-theme: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
package/src/config.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import biseLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/bise.svg';
2
2
  import energyLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/energy.svg';
3
3
  import insituLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/insitu.svg';
4
- import ipchemLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/ipchem.svg';
5
4
  import freshwaterLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/freshwater.svg';
6
5
  import fiseLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/fise.svg';
7
6
  import ccaLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/cca.svg';
@@ -10,6 +9,7 @@ import industryLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/as
10
9
  import marineLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/marine.svg';
11
10
  import eionetLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/eionet.svg';
12
11
  import eeaLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/eea.svg';
12
+ import climateLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/climate-health.svg';
13
13
 
14
14
  // TODO: to be consolidated with headerLinks
15
15
  // Footer.jsx config options
@@ -37,26 +37,31 @@ export const footerOpts = {
37
37
  },
38
38
  ],
39
39
  sites: [
40
+ {
41
+ link: 'https://water.europa.eu/marine',
42
+ src: marineLogo,
43
+ alt: 'WISE marine',
44
+ },
40
45
  {
41
46
  link: 'https://biodiversity.europa.eu/',
42
47
  src: biseLogo,
43
48
  alt: 'Biodiversity',
44
49
  },
45
50
  {
46
- link: 'https://climate-energy.eea.europa.eu/',
47
- src: energyLogo,
48
- alt: 'Climate and energy in the EU',
51
+ link: 'https://climate-adapt.eea.europa.eu/observatory',
52
+ src: climateLogo,
53
+ alt: 'European Climate and Health Observatory',
54
+ },
55
+ {
56
+ link: 'https://industry.eea.europa.eu/',
57
+ src: industryLogo,
58
+ alt: 'European industrial emissions portal',
49
59
  },
50
60
  {
51
61
  link: 'https://insitu.copernicus.eu/',
52
62
  src: insituLogo,
53
63
  alt: 'Copernicus in situ',
54
64
  },
55
- {
56
- link: 'https://ipchem.jrc.ec.europa.eu/RDSIdiscovery/ipchem/index.html',
57
- src: ipchemLogo,
58
- alt: 'Information platform for chemical monitoring',
59
- },
60
65
  {
61
66
  link: 'https://water.europa.eu/freshwater',
62
67
  src: freshwaterLogo,
@@ -72,21 +77,16 @@ export const footerOpts = {
72
77
  src: ccaLogo,
73
78
  alt: 'Climate adapt',
74
79
  },
80
+ {
81
+ link: 'https://climate-energy.eea.europa.eu/',
82
+ src: energyLogo,
83
+ alt: 'Climate and energy in the EU',
84
+ },
75
85
  {
76
86
  link: 'https://land.copernicus.eu/',
77
87
  src: copernicusLogo,
78
88
  alt: 'Copernicus land monitoring service',
79
89
  },
80
- {
81
- link: 'https://industry.eea.europa.eu/',
82
- src: industryLogo,
83
- alt: 'European industrial emissions portal',
84
- },
85
- {
86
- link: 'https://water.europa.eu/marine',
87
- src: marineLogo,
88
- alt: 'WISE marine',
89
- },
90
90
  ],
91
91
  managedBy: [
92
92
  {