@eeacms/volto-cca-policy 0.3.87 → 0.3.88
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 -2
- package/package.json +1 -1
- package/src/index.js +8 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@ 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.3.
|
|
7
|
+
### [0.3.88](https://github.com/eea/volto-cca-policy/compare/1.0.0-alpha.1...0.3.88) - 10 November 2025
|
|
8
8
|
|
|
9
9
|
#### :rocket: Dependency updates
|
|
10
10
|
|
|
@@ -14,6 +14,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
14
14
|
|
|
15
15
|
#### :bug: Bug Fixes
|
|
16
16
|
|
|
17
|
+
- fix: url instead of link in footer config - refs #293707 [kreafox - [`00e3489`](https://github.com/eea/volto-cca-policy/commit/00e3489e6855024ab8186e042d250b5529bea0e4)]
|
|
17
18
|
- fix(tests): increase code coverage [kreafox - [`66cd2b3`](https://github.com/eea/volto-cca-policy/commit/66cd2b39a9b7b026c171d99e2bf3b8a47b7cddd2)]
|
|
18
19
|
- fix(tests): update hyperlink text in PlanningTab [kreafox - [`05080e0`](https://github.com/eea/volto-cca-policy/commit/05080e0727730a5fe7c67d884ad6453eaf82081a)]
|
|
19
20
|
- fix(mission): adjust margins for nested lists and accordion padding [kreafox - [`1abf18f`](https://github.com/eea/volto-cca-policy/commit/1abf18fabe9efffa552ed2e6a8b57f9b1d59f7a6)]
|
|
@@ -137,7 +138,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
137
138
|
- Add some loadable for components [Tiberiu Ichim - [`1793962`](https://github.com/eea/volto-cca-policy/commit/179396211c66a6a2465b2d1b6c0f2afc40fc7189)]
|
|
138
139
|
- Refs #284961 - test [Tripon Eugen - [`c989f1f`](https://github.com/eea/volto-cca-policy/commit/c989f1f8638c0c5233c5c49f8673c9a2cdc7937e)]
|
|
139
140
|
- Refs #284961 - add translations [Tripon Eugen - [`04ee988`](https://github.com/eea/volto-cca-policy/commit/04ee988c086d393b9b37ce1ea8d24f5e84f266aa)]
|
|
140
|
-
### [1.0.0-alpha.0](https://github.com/eea/volto-cca-policy/compare/0.3.
|
|
141
|
+
### [1.0.0-alpha.0](https://github.com/eea/volto-cca-policy/compare/0.3.87...1.0.0-alpha.0) - 15 July 2025
|
|
142
|
+
|
|
143
|
+
### [0.3.87](https://github.com/eea/volto-cca-policy/compare/0.3.86...0.3.87) - 10 November 2025
|
|
144
|
+
|
|
145
|
+
#### :nail_care: Enhancements
|
|
146
|
+
|
|
147
|
+
- change(mission): update download fields for CSV export for mission funding search - refs #293691 [kreafox - [`7451c66`](https://github.com/eea/volto-cca-policy/commit/7451c6698a4160e580e39cb4b38a87cf38dd49d8)]
|
|
141
148
|
|
|
142
149
|
### [0.3.86](https://github.com/eea/volto-cca-policy/compare/0.3.85...0.3.86) - 31 October 2025
|
|
143
150
|
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -167,26 +167,30 @@ const applyConfig = (config) => {
|
|
|
167
167
|
'The European Climate Adaptation Platform Climate-ADAPT is a partnership between the European Commission and the European Environment Agency.',
|
|
168
168
|
managedBy: [
|
|
169
169
|
{
|
|
170
|
-
|
|
170
|
+
url: 'https://www.eea.europa.eu/',
|
|
171
171
|
src: eeaWhiteLogo,
|
|
172
172
|
alt: 'EEA Logo',
|
|
173
173
|
className: 'site logo',
|
|
174
174
|
columnSize: {
|
|
175
175
|
mobile: 6,
|
|
176
|
-
tablet:
|
|
176
|
+
tablet: 6,
|
|
177
177
|
computer: 4,
|
|
178
178
|
},
|
|
179
|
+
width: 270,
|
|
180
|
+
height: 100,
|
|
179
181
|
},
|
|
180
182
|
{
|
|
181
|
-
|
|
183
|
+
url: 'https://commission.europa.eu/',
|
|
182
184
|
src: europeanComissionLogo,
|
|
183
185
|
alt: 'European Commission Logo',
|
|
184
186
|
className: 'ec logo',
|
|
185
187
|
columnSize: {
|
|
186
188
|
mobile: 6,
|
|
187
|
-
tablet:
|
|
189
|
+
tablet: 6,
|
|
188
190
|
computer: 4,
|
|
189
191
|
},
|
|
192
|
+
width: 360,
|
|
193
|
+
height: 95,
|
|
190
194
|
},
|
|
191
195
|
],
|
|
192
196
|
social: [],
|