@eeacms/volto-marine-policy 2.0.1 → 2.0.2
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 +11 -0
- package/package.json +4 -4
- package/theme/globals/site.overrides +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ 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
|
+
### [2.0.2](https://github.com/eea/volto-marine-policy/compare/2.0.1...2.0.2) - 7 November 2024
|
|
8
|
+
|
|
9
|
+
#### :rocket: Dependency updates
|
|
10
|
+
|
|
11
|
+
- Release @eeacms/volto-searchlib@2.0.3 - resolutions [EEA Jenkins - [`0878ef3`](https://github.com/eea/volto-marine-policy/commit/0878ef3c784e9ab3da9f991b68a8e2fc01ab76a4)]
|
|
12
|
+
- Release @eeacms/volto-searchlib@2.0.2 - resolutions [EEA Jenkins - [`c4788f8`](https://github.com/eea/volto-marine-policy/commit/c4788f8bd5b63f658263002e3746304720fa943b)]
|
|
13
|
+
|
|
14
|
+
#### :house: Internal changes
|
|
15
|
+
|
|
16
|
+
- style: remove .documentFirstHeading border-bottom [laszlocseh - [`8aec7be`](https://github.com/eea/volto-marine-policy/commit/8aec7be7c82617e698eb160d0c2434df7f363d73)]
|
|
17
|
+
|
|
7
18
|
### [2.0.1](https://github.com/eea/volto-marine-policy/compare/2.0.0...2.0.1) - 26 July 2024
|
|
8
19
|
|
|
9
20
|
#### :bug: Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eeacms/volto-marine-policy",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "@eeacms/volto-marine-policy: Volto add-on",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"author": "European Environment Agency: IDM2 A-Team",
|
|
@@ -26,23 +26,23 @@
|
|
|
26
26
|
"resolutions": {
|
|
27
27
|
"react-countup/countup.js": "2.5.0",
|
|
28
28
|
"d3-array": "^2.12.1",
|
|
29
|
-
"@eeacms/volto-searchlib": "
|
|
29
|
+
"@eeacms/volto-searchlib": "2.0.3",
|
|
30
30
|
"@eeacms/countup": "^2.0.6",
|
|
31
31
|
"@elastic/search-ui": "1.21.2"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@eeacms/volto-eea-design-system": "*",
|
|
35
35
|
"@eeacms/volto-eea-website-theme": "^2.1.2",
|
|
36
|
-
"@eeacms/volto-searchlib": "^2.0.2",
|
|
37
36
|
"@eeacms/volto-embed": "^10.0.2",
|
|
38
37
|
"@eeacms/volto-globalsearch": "^2.0.0",
|
|
38
|
+
"@eeacms/volto-searchlib": "^2.0.2",
|
|
39
39
|
"@eeacms/volto-tabs-block": "^8.0.0",
|
|
40
40
|
"axios": "0.25.0",
|
|
41
|
+
"d3-array": "^2.12.1",
|
|
41
42
|
"jquery": "3.6.0",
|
|
42
43
|
"razzle-plugin-scss": "^4.2.18",
|
|
43
44
|
"react-lazy-load-image-component": "^1.4.0",
|
|
44
45
|
"react-slick": "^0.24.0",
|
|
45
|
-
"d3-array": "^2.12.1",
|
|
46
46
|
"slick-carousel": "^1.8.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
Global Overrides
|
|
3
3
|
*******************************/
|
|
4
4
|
|
|
5
|
+
.documentFirstHeading {
|
|
6
|
+
border-bottom: none !important;
|
|
7
|
+
|
|
8
|
+
&::before {
|
|
9
|
+
border-bottom: none !important;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
#page-document > blockquote {
|
|
6
15
|
margin-right: revert !important;
|
|
7
16
|
margin-left: revert !important;
|