@eeacms/volto-clms-theme 1.1.243 → 1.1.245
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 -0
- package/Jenkinsfile +1 -1
- package/package.json +1 -1
- package/src/components/Result/search-styles.less +18 -2
- package/src/search/config.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +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.1.245](https://github.com/eea/volto-clms-theme/compare/1.1.244...1.1.245) - 23 July 2025
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- Refs #290022 - Disable FAQ autocomplete suggestions. [GhitaB - [`c387e57`](https://github.com/eea/volto-clms-theme/commit/c387e57416fa37d5624144900d994a75de6876f6)]
|
|
12
|
+
- Refs #290022 - Histogram facet: fix horizontal scrollbar. Update active facet title color. [GhitaB - [`71bd60f`](https://github.com/eea/volto-clms-theme/commit/71bd60f4f97314d1a5f494d795612fd16d5574cb)]
|
|
13
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`346445f`](https://github.com/eea/volto-clms-theme/commit/346445fdbd3622514d2883ebe56df879e3e3e5fb)]
|
|
14
|
+
### [1.1.244](https://github.com/eea/volto-clms-theme/compare/1.1.243...1.1.244) - 23 June 2025
|
|
15
|
+
|
|
16
|
+
#### :hammer_and_wrench: Others
|
|
17
|
+
|
|
18
|
+
- Refs #286059 - Technical Library search: set a min height to prevent scroll in categories facet. [GhitaB - [`2c2aa54`](https://github.com/eea/volto-clms-theme/commit/2c2aa540c687e54e8a43d0371c88e6dacf422bd1)]
|
|
7
19
|
### [1.1.243](https://github.com/eea/volto-clms-theme/compare/1.1.242...1.1.243) - 20 June 2025
|
|
8
20
|
|
|
9
21
|
#### :house: Internal changes
|
package/Jenkinsfile
CHANGED
|
@@ -9,7 +9,7 @@ pipeline {
|
|
|
9
9
|
environment {
|
|
10
10
|
GIT_NAME = "volto-clms-theme"
|
|
11
11
|
NAMESPACE = "@eeacms"
|
|
12
|
-
SONARQUBE_TAGS = "
|
|
12
|
+
SONARQUBE_TAGS = "volto.eea.europa.eu,clmsdemo.devel6cph.eea.europa.eu,land.copernicus.eu,ask.copernicus.eu"
|
|
13
13
|
DEPENDENCIES = ""
|
|
14
14
|
BACKEND_PROFILES = "eea.kitkat:testing"
|
|
15
15
|
BACKEND_ADDONS = "clms.addon,clms.types,clms.downloadtool,clms.statstool"
|
package/package.json
CHANGED
|
@@ -8,8 +8,20 @@ body.clmsSearchTechnicalLibrary-view {
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.searchlib-block
|
|
12
|
-
|
|
11
|
+
.searchlib-block
|
|
12
|
+
.dropdown-facets-list
|
|
13
|
+
.dropdown-facet
|
|
14
|
+
.ui.button.basic.facet-btn.active
|
|
15
|
+
> .facet-title {
|
|
16
|
+
color: @clms-dark;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.searchlib-block .dropdown-facets-list .sidebar-wrapper .sidebar-content {
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
|
|
22
|
+
h3 {
|
|
23
|
+
color: @clms-dark !important;
|
|
24
|
+
}
|
|
13
25
|
}
|
|
14
26
|
|
|
15
27
|
.searchlib-block .dropdown-facets-list .sidebar-wrapper .clear-btn {
|
|
@@ -42,6 +54,10 @@ body.clmsSearchTechnicalLibrary-view {
|
|
|
42
54
|
content: '▼';
|
|
43
55
|
}
|
|
44
56
|
|
|
57
|
+
fieldset.sui-facet.searchlib-multiterm-facet > div:nth-of-type(2) {
|
|
58
|
+
min-height: 240px !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
45
61
|
i.icon.angle.left:before {
|
|
46
62
|
content: '❮';
|
|
47
63
|
}
|
package/src/search/config.js
CHANGED