@eeacms/volto-cca-policy 0.2.61 → 0.2.63
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 +7 -1
- package/package.json +2 -2
- package/src/index.js +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,18 @@ 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.2.63](https://github.com/eea/volto-cca-policy/compare/0.2.62...0.2.63) - 27 August 2024
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- Upgrade version for volto-datablocks [Tiberiu Ichim - [`a22a03e`](https://github.com/eea/volto-cca-policy/commit/a22a03e59d27805a95ba9312905e893051f6a226)]
|
|
12
|
+
### [0.2.62](https://github.com/eea/volto-cca-policy/compare/0.2.61...0.2.62) - 26 August 2024
|
|
13
|
+
|
|
7
14
|
### [0.2.61](https://github.com/eea/volto-cca-policy/compare/0.2.60...0.2.61) - 22 August 2024
|
|
8
15
|
|
|
9
16
|
#### :hammer_and_wrench: Others
|
|
10
17
|
|
|
11
18
|
- Remove console.log [Tiberiu Ichim - [`f6b6561`](https://github.com/eea/volto-cca-policy/commit/f6b65615ac46fa6a632fd0631ede4ea061151609)]
|
|
12
|
-
- Pass down table directly [Tiberiu Ichim - [`88dd7a4`](https://github.com/eea/volto-cca-policy/commit/88dd7a40a3724d392e4651312fae3312ee768059)]
|
|
13
19
|
### [0.2.60](https://github.com/eea/volto-cca-policy/compare/0.2.59...0.2.60) - 19 August 2024
|
|
14
20
|
|
|
15
21
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eeacms/volto-cca-policy",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.63",
|
|
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",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@eeacms/volto-block-style": "github:eea/volto-block-style#6.x.x",
|
|
31
|
-
"@eeacms/volto-datablocks": "
|
|
31
|
+
"@eeacms/volto-datablocks": "^7.2.2",
|
|
32
32
|
"@eeacms/volto-eea-design-system": "*",
|
|
33
33
|
"@eeacms/volto-eea-website-theme": "^1.33.2",
|
|
34
34
|
"@eeacms/volto-embed": "^9.1.1",
|
package/src/index.js
CHANGED
|
@@ -417,7 +417,12 @@ const applyConfig = (config) => {
|
|
|
417
417
|
},
|
|
418
418
|
GET_CONTENT: ['siblings'],
|
|
419
419
|
},
|
|
420
|
-
|
|
420
|
+
{
|
|
421
|
+
match: {
|
|
422
|
+
path: /(.*)\/countries-regions\/countries\/(.*)/,
|
|
423
|
+
},
|
|
424
|
+
GET_CONTENT: ['siblings'],
|
|
425
|
+
},
|
|
421
426
|
{
|
|
422
427
|
match: '',
|
|
423
428
|
GET_CONTENT: ['navigation', 'breadcrumbs', 'actions'],
|