@eeacms/volto-globalsearch 1.0.17 → 1.0.18
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 +5 -0
- package/package.json +1 -1
- package/src/config/clusters.js +6 -0
- package/src/config/facets.js +5 -0
- package/src/config/vocabulary.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ 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.0.18](https://github.com/eea/volto-globalsearch/compare/1.0.17...1.0.18) - 10 July 2023
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- added new sites [Zoltan Szabo - [`a111d65`](https://github.com/eea/volto-globalsearch/commit/a111d65b686ebb515750a9e495dbcc4278bedd17)]
|
|
7
12
|
### [1.0.17](https://github.com/eea/volto-globalsearch/compare/1.0.16...1.0.17) - 12 June 2023
|
|
8
13
|
|
|
9
14
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
package/src/config/clusters.js
CHANGED
|
@@ -140,6 +140,12 @@ export default {
|
|
|
140
140
|
cab: {
|
|
141
141
|
url: require('../static/cab-logo.png'),
|
|
142
142
|
},
|
|
143
|
+
discomap: {
|
|
144
|
+
url: require('../static/eea-logo.svg'),
|
|
145
|
+
},
|
|
146
|
+
noise: {
|
|
147
|
+
url: require('../static/eea-logo.svg'),
|
|
148
|
+
},
|
|
143
149
|
},
|
|
144
150
|
Countries: {
|
|
145
151
|
fallback: {
|
package/src/config/facets.js
CHANGED
|
@@ -234,6 +234,7 @@ const facets = [
|
|
|
234
234
|
dateRangeFacet({
|
|
235
235
|
field: 'issued.date',
|
|
236
236
|
label: ' ',
|
|
237
|
+
allow_missing: false,
|
|
237
238
|
activeFilterLabel: 'Published',
|
|
238
239
|
isFilter: true, // filters don't need facet options to show up
|
|
239
240
|
showInFacetsList: false,
|
|
@@ -255,6 +256,10 @@ const facets = [
|
|
|
255
256
|
values: ['Last 5 years'],
|
|
256
257
|
type: 'any',
|
|
257
258
|
},
|
|
259
|
+
missing: {
|
|
260
|
+
values: ['All time'],
|
|
261
|
+
type: 'any',
|
|
262
|
+
},
|
|
258
263
|
}),
|
|
259
264
|
multiTermFacet({
|
|
260
265
|
field: 'language',
|
package/src/config/vocabulary.js
CHANGED