@eeacms/volto-bise-policy 1.2.44 → 1.2.46
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 +12 -1
- package/package.json +2 -2
- package/src/index.js +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +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
|
-
### [1.2.
|
|
7
|
+
### [1.2.46](https://github.com/eea/volto-bise-policy/compare/1.2.45...1.2.46) - 5 May 2026
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- update headerSearchbox config values [Miu Razvan - [`e06f141`](https://github.com/eea/volto-bise-policy/commit/e06f141dcf0f35b461c5cf8861fc6608171a4e4c)]
|
|
12
|
+
### [1.2.45](https://github.com/eea/volto-bise-policy/compare/1.2.44...1.2.45) - 5 May 2026
|
|
13
|
+
|
|
14
|
+
#### :rocket: Dependency updates
|
|
15
|
+
|
|
16
|
+
- Release @eeacms/volto-openlayers-map@2.0.0 [EEA Jenkins - [`cbb904d`](https://github.com/eea/volto-bise-policy/commit/cbb904dc4bf2bd3aea58bc2fab06501b643fcb42)]
|
|
17
|
+
|
|
18
|
+
### [1.2.44](https://github.com/eea/volto-bise-policy/compare/1.2.43...1.2.44) - 14 April 2026
|
|
8
19
|
|
|
9
20
|
#### :house: Internal changes
|
|
10
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eeacms/volto-bise-policy",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.46",
|
|
4
4
|
"description": "@eeacms/volto-bise-policy: Volto add-on",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"author": "European Environment Agency: IDM2 A-Team",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@eeacms/volto-datablocks": "*",
|
|
31
31
|
"@eeacms/volto-eea-design-system": "*",
|
|
32
32
|
"@eeacms/volto-eea-website-theme": "*",
|
|
33
|
-
"@eeacms/volto-openlayers-map": "
|
|
33
|
+
"@eeacms/volto-openlayers-map": "2.0.0",
|
|
34
34
|
"@eeacms/volto-resize-helper": "*",
|
|
35
35
|
"@plone-collective/volto-authomatic": "2.0.1",
|
|
36
36
|
"esri-loader": "3.7.0",
|
package/src/index.js
CHANGED
|
@@ -121,14 +121,19 @@ const applyConfig = (config) => {
|
|
|
121
121
|
},
|
|
122
122
|
headerSearchBox: [
|
|
123
123
|
{
|
|
124
|
-
|
|
125
|
-
// to replace search path change path to whatever you want and match with the page in volto website
|
|
124
|
+
type: 'search-input',
|
|
126
125
|
path: '/advanced-search',
|
|
127
126
|
placeholder: 'Search BISE...',
|
|
128
|
-
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'info',
|
|
130
|
+
content:
|
|
129
131
|
'Looking for more information? Try searching the full EEA website content',
|
|
130
|
-
|
|
131
|
-
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'button-link',
|
|
135
|
+
title: 'Go to advanced search',
|
|
136
|
+
url: 'https://www.eea.europa.eu/en/advanced-search',
|
|
132
137
|
},
|
|
133
138
|
],
|
|
134
139
|
logoTargetUrl: '/',
|