@eeacms/volto-cca-policy 0.1.62 → 0.1.64
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 +9 -1
- package/package.json +2 -1
- package/src/index.js +30 -0
- package/src/search/facets.js +266 -1267
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,15 @@ 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.
|
|
7
|
+
### [0.1.64](https://github.com/eea/volto-cca-policy/compare/0.1.63...0.1.64) - 23 January 2024
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- Update menu for translated search menu (fix show children) [Ghiță Bizău - [`b151b96`](https://github.com/eea/volto-cca-policy/commit/b151b96cb0dfcfc6ab9354e73260691c6378d65a)]
|
|
12
|
+
- Add dependency on volto-searchlib [Tiberiu Ichim - [`c2117c4`](https://github.com/eea/volto-cca-policy/commit/c2117c4b540572141a859c4f6aea95a65c347ba0)]
|
|
13
|
+
### [0.1.63](https://github.com/eea/volto-cca-policy/compare/0.1.62...0.1.63) - 23 January 2024
|
|
14
|
+
|
|
15
|
+
### [0.1.62](https://github.com/eea/volto-cca-policy/compare/0.1.61...0.1.62) - 22 January 2024
|
|
8
16
|
|
|
9
17
|
#### :bug: Bug Fixes
|
|
10
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eeacms/volto-cca-policy",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.64",
|
|
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",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"@eeacms/volto-eea-website-theme": "*",
|
|
34
34
|
"@eeacms/volto-globalsearch": "*",
|
|
35
35
|
"@eeacms/volto-openlayers-map": "*",
|
|
36
|
+
"@eeacms/volto-searchlib": "*",
|
|
36
37
|
"@eeacms/volto-slate-label": "*",
|
|
37
38
|
"@eeacms/volto-widget-dataprovenance": "*",
|
|
38
39
|
"@eeacms/volto-widget-geolocation": "*",
|
package/src/index.js
CHANGED
|
@@ -284,9 +284,39 @@ const applyConfig = (config) => {
|
|
|
284
284
|
'/en/eu-policy': {
|
|
285
285
|
hideChildrenFromNavigation: false,
|
|
286
286
|
},
|
|
287
|
+
'/de/eu-policy': {
|
|
288
|
+
hideChildrenFromNavigation: false,
|
|
289
|
+
},
|
|
290
|
+
'/fr/eu-policy': {
|
|
291
|
+
hideChildrenFromNavigation: false,
|
|
292
|
+
},
|
|
293
|
+
'/es/eu-policy': {
|
|
294
|
+
hideChildrenFromNavigation: false,
|
|
295
|
+
},
|
|
296
|
+
'/it/eu-policy': {
|
|
297
|
+
hideChildrenFromNavigation: false,
|
|
298
|
+
},
|
|
299
|
+
'/pl/eu-policy': {
|
|
300
|
+
hideChildrenFromNavigation: false,
|
|
301
|
+
},
|
|
287
302
|
'/en/knowledge-1': {
|
|
288
303
|
hideChildrenFromNavigation: false,
|
|
289
304
|
},
|
|
305
|
+
'/de/knowledge-1': {
|
|
306
|
+
hideChildrenFromNavigation: false,
|
|
307
|
+
},
|
|
308
|
+
'/fr/knowledge-1': {
|
|
309
|
+
hideChildrenFromNavigation: false,
|
|
310
|
+
},
|
|
311
|
+
'/es/knowledge-1': {
|
|
312
|
+
hideChildrenFromNavigation: false,
|
|
313
|
+
},
|
|
314
|
+
'/it/knowledge-1': {
|
|
315
|
+
hideChildrenFromNavigation: false,
|
|
316
|
+
},
|
|
317
|
+
'/pl/knowledge-1': {
|
|
318
|
+
hideChildrenFromNavigation: false,
|
|
319
|
+
},
|
|
290
320
|
};
|
|
291
321
|
|
|
292
322
|
// Custom results
|