@eeacms/volto-cca-policy 0.1.79 → 0.1.81

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,11 +4,26 @@ 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.1.79](https://github.com/eea/volto-cca-policy/compare/0.1.78...0.1.79) - 20 February 2024
7
+ ### [0.1.81](https://github.com/eea/volto-cca-policy/compare/0.1.80...0.1.81) - 21 February 2024
8
+
9
+ #### :hammer_and_wrench: Others
10
+
11
+ - Don't hide the section header [Tiberiu Ichim - [`f7d9ded`](https://github.com/eea/volto-cca-policy/commit/f7d9ded5932b8636d3f485e5184639f8d88f3d33)]
12
+ ### [0.1.80](https://github.com/eea/volto-cca-policy/compare/0.1.79...0.1.80) - 21 February 2024
13
+
14
+ #### :bug: Bug Fixes
15
+
16
+ - fix: add missing class on menu accordion [kreafox - [`0b7008e`](https://github.com/eea/volto-cca-policy/commit/0b7008ee7252a5bd44c5d41f7804f63e3f81b3ca)]
17
+
18
+ #### :nail_care: Enhancements
19
+
20
+ - change: update cluster name in mission proiects search [kreafox - [`6a95c93`](https://github.com/eea/volto-cca-policy/commit/6a95c936e0fe015ec1fae7524cf3a8360fbb339d)]
8
21
 
9
22
  #### :hammer_and_wrench: Others
10
23
 
11
- - Don't crash in root [Tiberiu Ichim - [`ed2eb04`](https://github.com/eea/volto-cca-policy/commit/ed2eb04841fa3adb737138f6d8d9f7e0aaf3d776)]
24
+ - Fix sitemap route for observatory [Tiberiu Ichim - [`0780e4d`](https://github.com/eea/volto-cca-policy/commit/0780e4dfd9fc2416e927beff2bb5cb07a36ef244)]
25
+ ### [0.1.79](https://github.com/eea/volto-cca-policy/compare/0.1.78...0.1.79) - 20 February 2024
26
+
12
27
  ### [0.1.78](https://github.com/eea/volto-cca-policy/compare/0.1.77...0.1.78) - 20 February 2024
13
28
 
14
29
  #### :house: Internal changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-cca-policy",
3
- "version": "0.1.79",
3
+ "version": "0.1.81",
4
4
  "description": "@eeacms/volto-cca-policy: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -200,6 +200,7 @@ const FirstLevelContent = ({ element, renderMenuItem, pathName }) => {
200
200
  firstLevelPanels.push(x);
201
201
  return (
202
202
  <Accordion.Accordion
203
+ className={'ui'}
203
204
  panels={firstLevelPanels}
204
205
  key={index}
205
206
  defaultActiveIndex={defaultIndex === index ? 0 : -1}
package/src/index.js CHANGED
@@ -453,6 +453,12 @@ const applyConfig = (config) => {
453
453
  )})/mission/sitemap`,
454
454
  component: Sitemap,
455
455
  },
456
+ {
457
+ path: `/(${config.settings?.supportedLanguages.join(
458
+ '|',
459
+ )})/observatory/sitemap`,
460
+ component: Sitemap,
461
+ },
456
462
 
457
463
  ...(config.addonRoutes || []),
458
464
  ];
@@ -38,7 +38,7 @@ export default function installMainSearch(config) {
38
38
  host: process.env.RAZZLE_ES_PROXY_ADDR || 'http://localhost:3000',
39
39
  vocab: {
40
40
  cluster_name: {
41
- cca: 'Mission Portal',
41
+ cca: 'Climate-ADAPT',
42
42
  },
43
43
  },
44
44
  runtime_mappings: build_runtime_mappings(clusters),
@@ -13,7 +13,6 @@
13
13
  }
14
14
  }
15
15
 
16
-
17
16
  .item-nonclickable {
18
17
  pointer-events: none;
19
18
  }