@eeacms/volto-globalsearch 0.1.0 → 0.1.3
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 +23 -0
- package/package.json +3 -3
- package/src/config/global-search-config.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,31 @@ 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.3](https://github.com/eea/volto-globalsearch/compare/0.1.2...0.1.3)
|
|
8
|
+
|
|
9
|
+
- Fix dependencies [`6154706`](https://github.com/eea/volto-globalsearch/commit/6154706648586bd3d128b1d096cdf9bc661177af)
|
|
10
|
+
|
|
11
|
+
#### [0.1.2](https://github.com/eea/volto-globalsearch/compare/0.1.1...0.1.2)
|
|
12
|
+
|
|
13
|
+
> 10 June 2022
|
|
14
|
+
|
|
15
|
+
- Develop [`#4`](https://github.com/eea/volto-globalsearch/pull/4)
|
|
16
|
+
- New design v1 [`#3`](https://github.com/eea/volto-globalsearch/pull/3)
|
|
17
|
+
- Change layout component [`0c84f55`](https://github.com/eea/volto-globalsearch/commit/0c84f558596f68cff1243ed01cbec3307d1e1fc7)
|
|
18
|
+
|
|
19
|
+
#### [0.1.1](https://github.com/eea/volto-globalsearch/compare/0.1.0...0.1.1)
|
|
20
|
+
|
|
21
|
+
> 9 June 2022
|
|
22
|
+
|
|
23
|
+
- Develop [`#2`](https://github.com/eea/volto-globalsearch/pull/2)
|
|
24
|
+
- updated versions [`af47bcf`](https://github.com/eea/volto-globalsearch/commit/af47bcfc92b9f64bf05825717c70d430a02af0e4)
|
|
25
|
+
- Update versions [`6a367af`](https://github.com/eea/volto-globalsearch/commit/6a367affd02af1ddfad1686007ab2615d2f278af)
|
|
26
|
+
|
|
7
27
|
#### [0.1.0](https://github.com/eea/volto-globalsearch/compare/0.0.1...0.1.0)
|
|
8
28
|
|
|
29
|
+
> 7 June 2022
|
|
30
|
+
|
|
31
|
+
- Develop [`#1`](https://github.com/eea/volto-globalsearch/pull/1)
|
|
9
32
|
- fixed stylelint for less file [`162704c`](https://github.com/eea/volto-globalsearch/commit/162704c502109e8ab0d7903568ff42603c3bc852)
|
|
10
33
|
- prettier less file [`6bd424c`](https://github.com/eea/volto-globalsearch/commit/6bd424c1dae2ceceaf412339c3096dc575c0bc65)
|
|
11
34
|
- ignore eslint for *.json files [`e18919e`](https://github.com/eea/volto-globalsearch/commit/e18919e1255818c5cf33bf769cca078d75ca3422)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eeacms/volto-globalsearch",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "@eeacms/volto-globalsearch: Volto add-on",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"author": "European Environment Agency: IDM2 A-Team",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"url": "git@github.com:eea/volto-globalsearch.git"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@
|
|
21
|
-
"@eeacms/volto-searchlib": "0.3.0"
|
|
20
|
+
"@eeacms/volto-searchlib": "*"
|
|
22
21
|
},
|
|
23
22
|
"devDependencies": {
|
|
23
|
+
"@plone/scripts": "*",
|
|
24
24
|
"@cypress/code-coverage": "^3.9.5",
|
|
25
25
|
"babel-plugin-transform-class-properties": "^6.24.1"
|
|
26
26
|
},
|
|
@@ -15,7 +15,7 @@ import typesWhitelist from './json/typesWhitelist.json';
|
|
|
15
15
|
|
|
16
16
|
const globalSearchConfig = {
|
|
17
17
|
title: 'Global search and catalogue',
|
|
18
|
-
layoutComponent: '
|
|
18
|
+
layoutComponent: 'TopFilterLayout',
|
|
19
19
|
contentBodyComponent: 'FilterAsideContentView',
|
|
20
20
|
enableNLP: true, // enables NLP capabilities
|
|
21
21
|
facetsListComponent: 'VerticalCardsModalFacets',
|