@eeacms/volto-marine-policy 2.0.0 → 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 CHANGED
@@ -4,7 +4,24 @@ 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.0](https://github.com/eea/volto-marine-policy/compare/1.1.18...2.0.0) - 19 July 2024
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
+
18
+ ### [2.0.1](https://github.com/eea/volto-marine-policy/compare/2.0.0...2.0.1) - 26 July 2024
19
+
20
+ #### :bug: Bug Fixes
21
+
22
+ - fix: remove externalRoutes property on trailing slashes [nileshgulia1 - [`94a379f`](https://github.com/eea/volto-marine-policy/commit/94a379f168642077a99d859aab31a353f2958c91)]
23
+
24
+ ## [2.0.0](https://github.com/eea/volto-marine-policy/compare/1.1.18...2.0.0) - 19 July 2024
8
25
 
9
26
  #### :bug: Bug Fixes
10
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-marine-policy",
3
- "version": "2.0.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": "1.0.0",
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": {
package/src/index.js CHANGED
@@ -181,24 +181,24 @@ const applyConfig = (config) => {
181
181
 
182
182
  config.settings.available_colors = available_colors;
183
183
 
184
- config.settings.externalRoutes = [
185
- ...(config.settings.externalRoutes || []),
186
- ...(config.settings.prefixPath
187
- ? [
188
- {
189
- match: {
190
- path: /\/$/,
191
- exact: true,
192
- strict: true,
193
- },
194
-
195
- url(payload) {
196
- return payload.location.pathname;
197
- },
198
- },
199
- ]
200
- : []),
201
- ];
184
+ // config.settings.externalRoutes = [
185
+ // ...(config.settings.externalRoutes || []),
186
+ // ...(config.settings.prefixPath
187
+ // ? [
188
+ // {
189
+ // match: {
190
+ // path: /\/$/,
191
+ // exact: true,
192
+ // strict: true,
193
+ // },
194
+
195
+ // url(payload) {
196
+ // return payload.location.pathname;
197
+ // },
198
+ // },
199
+ // ]
200
+ // : []),
201
+ // ];
202
202
  config.settings.externalRoutes = [
203
203
  ...(config.settings.externalRoutes || []),
204
204
  {
@@ -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;