@eeacms/volto-cca-policy 1.0.21 → 1.0.22
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
CHANGED
|
@@ -4,6 +4,13 @@ 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.22](https://github.com/eea/volto-cca-policy/compare/1.0.21...1.0.22) - 15 September 2026
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: cleanup NavigatorCatalogueCardItem [kreafox - [`c60ee16`](https://github.com/eea/volto-cca-policy/commit/c60ee16b3f28446519d9df08af4fbd9a7a2a4e00)]
|
|
12
|
+
- fix: reorder facets [kreafox - [`7855ec7`](https://github.com/eea/volto-cca-policy/commit/7855ec769dc80f768057744c7e9d07fa55c91253)]
|
|
13
|
+
|
|
7
14
|
### [1.0.21](https://github.com/eea/volto-cca-policy/compare/1.0.20...1.0.21) - 14 September 2026
|
|
8
15
|
|
|
9
16
|
#### :bug: Bug Fixes
|
package/package.json
CHANGED
|
@@ -189,12 +189,9 @@ const NavigatorCatalogueCardItem = (props) => {
|
|
|
189
189
|
</div>
|
|
190
190
|
<div className="catalogue-meta license-type">
|
|
191
191
|
{outputType && (
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
</span>
|
|
196
|
-
<span aria-hidden="true">·</span>
|
|
197
|
-
</>
|
|
192
|
+
<span className="catalogue-output" title={outputType}>
|
|
193
|
+
{intl.formatMessage(messages.typeOfOutput)}: {outputType}
|
|
194
|
+
</span>
|
|
198
195
|
)}
|
|
199
196
|
</div>
|
|
200
197
|
|
|
@@ -45,34 +45,33 @@ const facets = [
|
|
|
45
45
|
show: 10000,
|
|
46
46
|
isMulti: true,
|
|
47
47
|
},
|
|
48
|
-
geographic_countries,
|
|
49
|
-
language,
|
|
50
48
|
multiTermFacet({
|
|
51
|
-
field: '
|
|
49
|
+
field: 'cca_focus_areas.keyword',
|
|
52
50
|
isFilterable: false,
|
|
53
51
|
isMulti: true,
|
|
54
|
-
label: messages.
|
|
52
|
+
label: messages.focusAreas,
|
|
55
53
|
alwaysVisible: false,
|
|
56
54
|
}),
|
|
57
55
|
multiTermFacet({
|
|
58
|
-
field: '
|
|
56
|
+
field: 'cca_place_of_implementation.keyword',
|
|
59
57
|
isFilterable: false,
|
|
60
58
|
isMulti: true,
|
|
61
|
-
label: messages.
|
|
59
|
+
label: messages.implementationLevel,
|
|
62
60
|
alwaysVisible: false,
|
|
63
61
|
}),
|
|
62
|
+
geographic_countries,
|
|
64
63
|
multiTermFacet({
|
|
65
|
-
field: '
|
|
64
|
+
field: 'cca_adaptation_support_cycle_step.keyword',
|
|
66
65
|
isFilterable: false,
|
|
67
66
|
isMulti: true,
|
|
68
|
-
label: messages.
|
|
67
|
+
label: messages.adaptationSupportCycleStep,
|
|
69
68
|
alwaysVisible: false,
|
|
70
69
|
}),
|
|
71
70
|
multiTermFacet({
|
|
72
|
-
field: '
|
|
71
|
+
field: 'cca_type_of_outputs.keyword',
|
|
73
72
|
isFilterable: false,
|
|
74
73
|
isMulti: true,
|
|
75
|
-
label: messages.
|
|
74
|
+
label: messages.typeOfOutputs,
|
|
76
75
|
alwaysVisible: false,
|
|
77
76
|
}),
|
|
78
77
|
multiTermFacet({
|
|
@@ -82,6 +81,7 @@ const facets = [
|
|
|
82
81
|
label: messages.adaptationApproaches,
|
|
83
82
|
alwaysVisible: false,
|
|
84
83
|
}),
|
|
84
|
+
language,
|
|
85
85
|
];
|
|
86
86
|
|
|
87
87
|
export default facets;
|
|
@@ -703,6 +703,14 @@
|
|
|
703
703
|
gap: 0.7em;
|
|
704
704
|
}
|
|
705
705
|
|
|
706
|
+
.catalogue-output {
|
|
707
|
+
display: inline-block;
|
|
708
|
+
overflow: hidden;
|
|
709
|
+
max-width: 500px;
|
|
710
|
+
text-overflow: ellipsis;
|
|
711
|
+
white-space: nowrap;
|
|
712
|
+
}
|
|
713
|
+
|
|
706
714
|
.navigator-catalogue-cycle-elements {
|
|
707
715
|
gap: 0.25rem;
|
|
708
716
|
}
|