@eeacms/volto-cca-policy 0.3.73 → 0.3.75
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/.eslintrc.js +8 -4
- package/CHANGELOG.md +68 -2
- package/package.json +11 -10
- package/src/components/manage/Blocks/ASTNavigation/schema.js +3 -1
- package/src/components/manage/Blocks/C3SIndicatorsGlossaryBlock/schema.js +3 -1
- package/src/components/manage/Blocks/C3SIndicatorsListingBlock/schema.js +3 -1
- package/src/components/manage/Blocks/C3SIndicatorsOverviewBlock/schema.js +3 -1
- package/src/components/manage/Blocks/CaseStudyExplorer/FeatureDisplay.jsx +6 -1
- package/src/components/manage/Blocks/CaseStudyExplorer/styles.less +1 -1
- package/src/components/manage/Blocks/CollectionStatistics/styles.less +1 -1
- package/src/components/manage/Blocks/ContentLinks/schema.js +3 -1
- package/src/components/manage/Blocks/CountryMapHeatIndex/euro-countries-simplified.js +46197 -0
- package/src/components/manage/Blocks/CountryMapHeatIndex/styles.less +1 -1
- package/src/components/manage/Blocks/CountryMapObservatory/mapstyle.js +28 -26
- package/src/components/manage/Blocks/CountryMapObservatory/styles.less +1 -1
- package/src/components/manage/Blocks/CountryMapProfile/OLView.jsx +5 -5
- package/src/components/manage/Blocks/CountryMapProfile/euro-countries-simplified.js +46197 -0
- package/src/components/manage/Blocks/CountryMapProfile/styles.less +1 -1
- package/src/components/manage/Blocks/CountryProfileDetail/View.test.jsx +1 -2
- package/src/components/manage/Blocks/FlourishEmbedBlock/schema.js +3 -1
- package/src/components/manage/Blocks/RASTBlock/schema.js +3 -1
- package/src/components/manage/Blocks/ReadMore/schema.js +3 -1
- package/src/components/manage/Blocks/RelevantAceContent/schema.js +3 -1
- package/src/components/manage/Blocks/SearchAceContent/schema.js +3 -1
- package/src/components/manage/Blocks/TransRegionSelect/schema.js +3 -1
- package/src/components/manage/Blocks/index.js +0 -1
- package/src/components/theme/ASTNavigation/ASTNavigation.jsx +2 -3
- package/src/components/theme/BannerTitle/BannerTitle.jsx +2 -0
- package/src/components/theme/Header/Header.jsx +32 -22
- package/src/components/theme/Header/LanguageSwitch.jsx +2 -2
- package/src/components/theme/Views/BrokenLinks.jsx +0 -2
- package/src/components/theme/Views/CcaEventView.jsx +2 -4
- package/src/components/theme/Views/DatabaseItemView.test.jsx +1 -2
- package/src/components/theme/Widgets/GeolocationWidget.jsx +0 -2
- package/src/customizations/@plone/volto-slate/utils/volto-blocks.js +2 -5
- package/src/customizations/@plone/volto-slate/widgets/HtmlSlateWidget.jsx +30 -9
- package/src/customizations/@plone/volto-slate/widgets/README.md +15 -1
- package/src/customizations/volto/components/manage/Blocks/Grid/grid-1.svg +6 -0
- package/src/customizations/volto/components/manage/Blocks/Grid/grid-2.svg +9 -0
- package/src/customizations/volto/components/manage/Blocks/Grid/grid-3.svg +10 -0
- package/src/customizations/volto/components/manage/Blocks/Grid/grid-4.svg +11 -0
- package/src/customizations/volto/components/manage/Blocks/Grid/grid-5.svg +13 -0
- package/src/customizations/volto/components/manage/Blocks/Grid/grid-6.svg +14 -0
- package/src/customizations/volto/components/manage/Blocks/Grid/templates.js +61 -0
- package/src/customizations/volto/components/theme/App/App.jsx +3 -1
- package/src/customizations/volto/helpers/Html/Html.jsx +2 -9
- package/src/customizations/volto/middleware/api.js +190 -186
- package/src/customizations/volto/server.jsx +1 -1
- package/src/express-middleware.js +4 -2
- package/src/helpers/Utils.jsx +15 -2
- package/src/helpers/country_map/euro-countries-simplified.js +3 -1
- package/src/index.js +2 -8
- package/src/search/cca/views.js +3 -1
- package/src/search/health_observatory/views-health.js +3 -1
- package/src/store/middleware.js +38 -37
- package/theme/globals/blocks.less +4 -0
- package/theme/globals/mission.less +2 -9
- package/theme/globals/observatory.less +2 -2
- package/theme/globals/views.less +25 -0
- package/src/components/theme/Views/brokenlinks.less +0 -21
- package/src/components/theme/Widgets/geolocation.css +0 -3
- package/src/customizations/volto/components/manage/UniversalLink/UniversalLink.test.jsx +0 -229
- package/src/customizations/volto/components/manage/Widgets/ArrayWidget.jsx +0 -428
- package/src/customizations/volto/components/manage/Widgets/Readme.md +0 -5
- package/src/customizations/volto/components/theme/Footer/Footer.jsx +0 -96
- package/src/policy.js +0 -135
package/.eslintrc.js
CHANGED
|
@@ -35,10 +35,9 @@ const defaultConfig = {
|
|
|
35
35
|
map: [
|
|
36
36
|
['@plone/volto', '@plone/volto/src'],
|
|
37
37
|
['@plone/volto-slate', '@plone/volto/packages/volto-slate/src'],
|
|
38
|
-
['@root/routes', '@plone/volto/src'],
|
|
39
38
|
...addonAliases,
|
|
40
39
|
['@package', `${__dirname}/src`],
|
|
41
|
-
|
|
40
|
+
['@root', `${__dirname}/src`],
|
|
42
41
|
['~', `${__dirname}/src`],
|
|
43
42
|
],
|
|
44
43
|
extensions: ['.js', '.jsx', '.json'],
|
|
@@ -49,8 +48,13 @@ const defaultConfig = {
|
|
|
49
48
|
},
|
|
50
49
|
},
|
|
51
50
|
rules: {
|
|
52
|
-
'react/jsx-no-target-blank':
|
|
53
|
-
|
|
51
|
+
'react/jsx-no-target-blank': [
|
|
52
|
+
'error',
|
|
53
|
+
{
|
|
54
|
+
allowReferrer: true,
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
}
|
|
54
58
|
};
|
|
55
59
|
|
|
56
60
|
const config = addonExtenders.reduce(
|
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,22 @@ 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.75](https://github.com/eea/volto-cca-policy/compare/1.0.0-alpha.1...0.3.75) - 30 July 2025
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: trailing space issue in HtmlSlateWidget - refs #290137 [kreafox - [`34c1ff6`](https://github.com/eea/volto-cca-policy/commit/34c1ff6896a0fe3fae40527f31ea34220e945163)]
|
|
12
|
+
|
|
13
|
+
#### :house: Internal changes
|
|
14
|
+
|
|
15
|
+
- style: Automated code fix [eea-jenkins - [`0e75a69`](https://github.com/eea/volto-cca-policy/commit/0e75a6978a2b43e8ad4545ea5fb41191354fd9d0)]
|
|
16
|
+
- style: fix item spacing [kreafox - [`7d4535d`](https://github.com/eea/volto-cca-policy/commit/7d4535dbc486e6cb80fc55d6ac8c7c01d9cf48af)]
|
|
17
|
+
|
|
18
|
+
### [1.0.0-alpha.1](https://github.com/eea/volto-cca-policy/compare/1.0.0-alpha.0...1.0.0-alpha.1) - 28 July 2025
|
|
8
19
|
|
|
9
20
|
#### :rocket: Dependency updates
|
|
10
21
|
|
|
22
|
+
- Release @eeacms/volto-searchlib@2.1.6 [EEA Jenkins - [`ae34652`](https://github.com/eea/volto-cca-policy/commit/ae346528ed8e2fb302edb7457310107a733c575c)]
|
|
11
23
|
- Release @eeacms/volto-searchlib@2.1.5 [EEA Jenkins - [`fc16006`](https://github.com/eea/volto-cca-policy/commit/fc16006f2f26b14da82ceffcb976dd8fa68e1214)]
|
|
12
24
|
- Release @eeacms/volto-searchlib@2.1.4 [EEA Jenkins - [`eb7c538`](https://github.com/eea/volto-cca-policy/commit/eb7c5386eaa7a3d8cd24fec847c656b87848d6f7)]
|
|
13
25
|
- Release @eeacms/volto-searchlib@2.1.3 [EEA Jenkins - [`67e8a0d`](https://github.com/eea/volto-cca-policy/commit/67e8a0d9759fa44694615f695ebe651509797840)]
|
|
@@ -45,9 +57,14 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
45
57
|
|
|
46
58
|
#### :hammer_and_wrench: Others
|
|
47
59
|
|
|
60
|
+
- Bump version for volto-plotlycharts [Tiberiu Ichim - [`6ba369b`](https://github.com/eea/volto-cca-policy/commit/6ba369baabfa16e463b4c351f7ff65643047ebbe)]
|
|
61
|
+
- Set volto-embed version to star [Tiberiu Ichim - [`f390ac4`](https://github.com/eea/volto-cca-policy/commit/f390ac41afe77b48502df5ff19ae7b89111498aa)]
|
|
62
|
+
- Set plotlycharts to latest 13.0.0 version [Tiberiu Ichim - [`6ce598a`](https://github.com/eea/volto-cca-policy/commit/6ce598a5187f877ac42bb5b3c966235fb1eaa461)]
|
|
48
63
|
- add translations [Tripon Eugen - [`8f9a56c`](https://github.com/eea/volto-cca-policy/commit/8f9a56c78de23f96bafd1b381e5894c41a7180cb)]
|
|
49
64
|
- country map profile open popup in new page [Tripon Eugen - [`dede096`](https://github.com/eea/volto-cca-policy/commit/dede0965b844c85fde9f35f1262fb54bf127623c)]
|
|
50
65
|
- Define some messages; upgrade searchlib [Tiberiu Ichim - [`e150c65`](https://github.com/eea/volto-cca-policy/commit/e150c654b0eea096a7c6a1b3f80be7f9f0f046a2)]
|
|
66
|
+
- pin @eeacms/volto-plotlycharts [kreafox - [`c3ed94b`](https://github.com/eea/volto-cca-policy/commit/c3ed94b3a3914d38feb1bc72625d619ae467e96f)]
|
|
67
|
+
- Add dependency for plotly [Tiberiu Ichim - [`b9a3a48`](https://github.com/eea/volto-cca-policy/commit/b9a3a4888043fe1352a2cdcf88d15eeb1154eccf)]
|
|
51
68
|
- Refs #289437 - wip [Tripon Eugen - [`2073e24`](https://github.com/eea/volto-cca-policy/commit/2073e2404274cbacccbc303d4493860f8c938de8)]
|
|
52
69
|
- Refs #289437 - wip typo [Tripon Eugen - [`62c79a3`](https://github.com/eea/volto-cca-policy/commit/62c79a3c914f1c49d42ea96953a903af9e6e3a21)]
|
|
53
70
|
- Refs #289437 - map popup country name updtes [Tripon Eugen - [`f6b265d`](https://github.com/eea/volto-cca-policy/commit/f6b265dfa6d7710cdfac10fcdcac9de646f8d868)]
|
|
@@ -79,7 +96,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
79
96
|
- Add some loadable for components [Tiberiu Ichim - [`1793962`](https://github.com/eea/volto-cca-policy/commit/179396211c66a6a2465b2d1b6c0f2afc40fc7189)]
|
|
80
97
|
- Refs #284961 - test [Tripon Eugen - [`c989f1f`](https://github.com/eea/volto-cca-policy/commit/c989f1f8638c0c5233c5c49f8673c9a2cdc7937e)]
|
|
81
98
|
- Refs #284961 - add translations [Tripon Eugen - [`04ee988`](https://github.com/eea/volto-cca-policy/commit/04ee988c086d393b9b37ce1ea8d24f5e84f266aa)]
|
|
82
|
-
### [1.0.0-alpha.0](https://github.com/eea/volto-cca-policy/compare/0.3.
|
|
99
|
+
### [1.0.0-alpha.0](https://github.com/eea/volto-cca-policy/compare/0.3.74...1.0.0-alpha.0) - 15 July 2025
|
|
100
|
+
|
|
101
|
+
### [0.3.74](https://github.com/eea/volto-cca-policy/compare/0.3.73...0.3.74) - 29 July 2025
|
|
102
|
+
|
|
103
|
+
#### :rocket: Dependency updates
|
|
104
|
+
|
|
105
|
+
- Release @eeacms/volto-searchlib@2.1.6 [EEA Jenkins - [`ae34652`](https://github.com/eea/volto-cca-policy/commit/ae346528ed8e2fb302edb7457310107a733c575c)]
|
|
83
106
|
|
|
84
107
|
#### :bug: Bug Fixes
|
|
85
108
|
|
|
@@ -98,8 +121,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
98
121
|
|
|
99
122
|
#### :house: Internal changes
|
|
100
123
|
|
|
124
|
+
- style: fix item spacing [kreafox - [`7d4535d`](https://github.com/eea/volto-cca-policy/commit/7d4535dbc486e6cb80fc55d6ac8c7c01d9cf48af)]
|
|
101
125
|
- chore: code cleanup [kreafox - [`842419b`](https://github.com/eea/volto-cca-policy/commit/842419b1bce3dc624755c81c9dea672198cab9e2)]
|
|
102
126
|
- style: update teaser block styling [kreafox - [`1e0cad8`](https://github.com/eea/volto-cca-policy/commit/1e0cad8e1ed3ae827ee868dce8ad50b292a937ba)]
|
|
127
|
+
- chore: update Makefile, run yarn i18n [kreafox - [`61e6962`](https://github.com/eea/volto-cca-policy/commit/61e6962901068ae6512265417a730bd9befd65fe)]
|
|
103
128
|
- chore: move styling to theme folder [kreafox - [`8cf6a1b`](https://github.com/eea/volto-cca-policy/commit/8cf6a1b8b14abf472a9c61b28db574f6d9e0bd3b)]
|
|
104
129
|
- chore: remove ArrayWidget customization [kreafox - [`249bf93`](https://github.com/eea/volto-cca-policy/commit/249bf93054f7726c3d57a8b8ca01b75cd0d30522)]
|
|
105
130
|
- chore: remove Footer customization [kreafox - [`7038af3`](https://github.com/eea/volto-cca-policy/commit/7038af37d48a328dfc31746f3fa84973e2f840ab)]
|
|
@@ -113,6 +138,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
113
138
|
|
|
114
139
|
#### :hammer_and_wrench: Others
|
|
115
140
|
|
|
141
|
+
- Bump version for volto-plotlycharts [Tiberiu Ichim - [`6ba369b`](https://github.com/eea/volto-cca-policy/commit/6ba369baabfa16e463b4c351f7ff65643047ebbe)]
|
|
142
|
+
- Set volto-embed version to star [Tiberiu Ichim - [`f390ac4`](https://github.com/eea/volto-cca-policy/commit/f390ac41afe77b48502df5ff19ae7b89111498aa)]
|
|
143
|
+
- Set plotlycharts to latest 13.0.0 version [Tiberiu Ichim - [`6ce598a`](https://github.com/eea/volto-cca-policy/commit/6ce598a5187f877ac42bb5b3c966235fb1eaa461)]
|
|
144
|
+
- pin @eeacms/volto-plotlycharts [kreafox - [`c3ed94b`](https://github.com/eea/volto-cca-policy/commit/c3ed94b3a3914d38feb1bc72625d619ae467e96f)]
|
|
145
|
+
- Add dependency for plotly [Tiberiu Ichim - [`b9a3a48`](https://github.com/eea/volto-cca-policy/commit/b9a3a4888043fe1352a2cdcf88d15eeb1154eccf)]
|
|
116
146
|
- Bump version [Tiberiu Ichim - [`f8e327e`](https://github.com/eea/volto-cca-policy/commit/f8e327e750771576e4f44fa4c27035b6e3b9c9e7)]
|
|
117
147
|
- Fix eslint [Tiberiu Ichim - [`b6cfdd8`](https://github.com/eea/volto-cca-policy/commit/b6cfdd81c09e523d75ffbf2059008c77240311e2)]
|
|
118
148
|
- update Jenkinsfile [kreafox - [`c8683c2`](https://github.com/eea/volto-cca-policy/commit/c8683c28ff5272c76ea055ba4e2870d9d8236082)]
|
|
@@ -121,6 +151,34 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
121
151
|
- test: Update to volto 17 PR30 [valentinab25 - [`ed03286`](https://github.com/eea/volto-cca-policy/commit/ed032865efa051d6353844737616019b202ea562)]
|
|
122
152
|
- test: update snapshots [ana-oprea - [`94608ad`](https://github.com/eea/volto-cca-policy/commit/94608adc1b3b3655c7ecd5c39dde1f0fcd4b41e9)]
|
|
123
153
|
- test: Update to volto 17 PR30 [valentinab25 - [`2e81033`](https://github.com/eea/volto-cca-policy/commit/2e810334e08366ca77ba62383c064770dde643a1)]
|
|
154
|
+
### [0.3.73](https://github.com/eea/volto-cca-policy/compare/0.3.72...0.3.73) - 25 July 2025
|
|
155
|
+
|
|
156
|
+
#### :rocket: Dependency updates
|
|
157
|
+
|
|
158
|
+
- Release @eeacms/volto-searchlib@2.1.5 [EEA Jenkins - [`fc16006`](https://github.com/eea/volto-cca-policy/commit/fc16006f2f26b14da82ceffcb976dd8fa68e1214)]
|
|
159
|
+
- Release @eeacms/volto-searchlib@2.1.4 [EEA Jenkins - [`eb7c538`](https://github.com/eea/volto-cca-policy/commit/eb7c5386eaa7a3d8cd24fec847c656b87848d6f7)]
|
|
160
|
+
|
|
161
|
+
#### :bug: Bug Fixes
|
|
162
|
+
|
|
163
|
+
- fix: prettier [kreafox - [`3a7a76a`](https://github.com/eea/volto-cca-policy/commit/3a7a76adbcf42782e48fa9eb4653c3daba212884)]
|
|
164
|
+
- fix: fix missing content in edit mode by unwrapping <div> tags [kreafox - [`9317793`](https://github.com/eea/volto-cca-policy/commit/9317793b93569ed3e53872b413c6e5047ec66b6e)]
|
|
165
|
+
|
|
166
|
+
#### :nail_care: Enhancements
|
|
167
|
+
|
|
168
|
+
- change: update customization readme [kreafox - [`77338c5`](https://github.com/eea/volto-cca-policy/commit/77338c5fba63527f726d74c8fca758a69609d738)]
|
|
169
|
+
- change: update customization readme [kreafox - [`3ce75ac`](https://github.com/eea/volto-cca-policy/commit/3ce75ace40f27403582f9997fd4bd368ef66a399)]
|
|
170
|
+
- change: update customization readme [kreafox - [`27e8903`](https://github.com/eea/volto-cca-policy/commit/27e890308aae6f5a785cc4ff765c6729041848fb)]
|
|
171
|
+
|
|
172
|
+
#### :house: Internal changes
|
|
173
|
+
|
|
174
|
+
- style: Automated code fix [eea-jenkins - [`4094d3a`](https://github.com/eea/volto-cca-policy/commit/4094d3af0d9967ab6173ae9d088fd9f2ffcc2921)]
|
|
175
|
+
- style: Automated code fix [eea-jenkins - [`5f0b23b`](https://github.com/eea/volto-cca-policy/commit/5f0b23b56b2e261748f3cdaf1d288ed5b0df0adb)]
|
|
176
|
+
|
|
177
|
+
#### :hammer_and_wrench: Others
|
|
178
|
+
|
|
179
|
+
- add translations [Tripon Eugen - [`8f9a56c`](https://github.com/eea/volto-cca-policy/commit/8f9a56c78de23f96bafd1b381e5894c41a7180cb)]
|
|
180
|
+
- country map profile open popup in new page [Tripon Eugen - [`dede096`](https://github.com/eea/volto-cca-policy/commit/dede0965b844c85fde9f35f1262fb54bf127623c)]
|
|
181
|
+
- Define some messages; upgrade searchlib [Tiberiu Ichim - [`e150c65`](https://github.com/eea/volto-cca-policy/commit/e150c654b0eea096a7c6a1b3f80be7f9f0f046a2)]
|
|
124
182
|
### [0.3.72](https://github.com/eea/volto-cca-policy/compare/0.3.71...0.3.72) - 23 July 2025
|
|
125
183
|
|
|
126
184
|
#### :house: Internal changes
|
|
@@ -2829,10 +2887,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2829
2887
|
- Refs #260715 rast-block wip [Tripon Eugen - [`f19d54e`](https://github.com/eea/volto-cca-policy/commit/f19d54e0b9a6a86bf344eb85b6a1cda7f3de91bf)]
|
|
2830
2888
|
- Refs #260715 rast-block wip [Tripon Eugen - [`2828537`](https://github.com/eea/volto-cca-policy/commit/2828537b6c084cd1a82162d552fb4ef025b71f9f)]
|
|
2831
2889
|
- Refs #260715 rast-block updates [Tripon Eugen - [`1e803e5`](https://github.com/eea/volto-cca-policy/commit/1e803e5bd3d3fb7558f261c76c68866be7beb8b5)]
|
|
2890
|
+
- test: [JENKINS] Use java17 for sonarqube scanner [valentinab25 - [`0a15e1b`](https://github.com/eea/volto-cca-policy/commit/0a15e1b2ad081233685e80d5b3c60a8663f6b896)]
|
|
2891
|
+
- test: [JENKINS] Run cypress in started frontend container [valentinab25 - [`9554e44`](https://github.com/eea/volto-cca-policy/commit/9554e44c92a621a52b2adb5a4830fb084ee5734b)]
|
|
2832
2892
|
### [0.1.49](https://github.com/eea/volto-cca-policy/compare/0.1.48...0.1.49) - 15 November 2023
|
|
2833
2893
|
|
|
2834
2894
|
#### :house: Internal changes
|
|
2835
2895
|
|
|
2896
|
+
- chore: [JENKINS] Refactor automated testing [valentinab25 - [`7b820a6`](https://github.com/eea/volto-cca-policy/commit/7b820a6369c2ddd5203b1a4abe352cb4bb43db7a)]
|
|
2836
2897
|
- chore: husky, lint-staged use fixed versions [valentinab25 - [`f0a8061`](https://github.com/eea/volto-cca-policy/commit/f0a8061c275c236deb00087c23fac9860a073106)]
|
|
2837
2898
|
|
|
2838
2899
|
#### :hammer_and_wrench: Others
|
|
@@ -2849,6 +2910,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2849
2910
|
- Refs #259267 - jenkins test [Tripon Eugen - [`cacd31e`](https://github.com/eea/volto-cca-policy/commit/cacd31e7b1afe0983674ed5c7632d2e1d7fa752e)]
|
|
2850
2911
|
- Refs #259267 - jenkins [Tripon Eugen - [`5b3affe`](https://github.com/eea/volto-cca-policy/commit/5b3affee8401239de10097884c1b7f2349d15ec0)]
|
|
2851
2912
|
- Refs #259267 - add When, lead image and title to files [Tripon Eugen - [`2cedb23`](https://github.com/eea/volto-cca-policy/commit/2cedb237f898af9057e13fba94b615ef71077204)]
|
|
2913
|
+
- test: [JENKINS] Add cpu limit on cypress docker [valentinab25 - [`4d607a5`](https://github.com/eea/volto-cca-policy/commit/4d607a576e9d0a5c34e48c41b409e7df616ee3d6)]
|
|
2914
|
+
- test: [JENKINS] Increase shm-size to cypress docker [valentinab25 - [`b7f74d5`](https://github.com/eea/volto-cca-policy/commit/b7f74d53513a6edbfbca5cb6d19687929bb1e5db)]
|
|
2915
|
+
- test: [JENKINS] Improve cypress time [valentinab25 - [`db65617`](https://github.com/eea/volto-cca-policy/commit/db656173391f65157098d95d388c25f6429753d8)]
|
|
2852
2916
|
- Refs #259267 - cca event blocks attachments and check not mandatoty fields [Tripon Eugen - [`3138e5a`](https://github.com/eea/volto-cca-policy/commit/3138e5afb5bfbdbed14e27ed457b16867b7fa414)]
|
|
2853
2917
|
- Refs #256681 - Fix error in CCA Event view menu. ([React Intl] An id must be provided to format a message.) [GhitaB - [`517eeb8`](https://github.com/eea/volto-cca-policy/commit/517eeb817264a47bbfd6b9b7d22aaf22d44ed224)]
|
|
2854
2918
|
- Refs #161485 - Fix ECDE name conflict. [GhitaB - [`8bfd99f`](https://github.com/eea/volto-cca-policy/commit/8bfd99ff68bb82a04d1c0ed625fa514fcf46289e)]
|
|
@@ -3065,6 +3129,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
3065
3129
|
|
|
3066
3130
|
#### :house: Internal changes
|
|
3067
3131
|
|
|
3132
|
+
- chore: [JENKINS] Remove alpha testing version [valentinab25 - [`ad1ced0`](https://github.com/eea/volto-cca-policy/commit/ad1ced0971ba116c13a3b5fcc039172cc915c919)]
|
|
3068
3133
|
|
|
3069
3134
|
#### :hammer_and_wrench: Others
|
|
3070
3135
|
|
|
@@ -3545,6 +3610,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
3545
3610
|
#### :hammer_and_wrench: Others
|
|
3546
3611
|
|
|
3547
3612
|
- Refs #158294 - Update supported languages list. [GhitaB - [`0a4f91f`](https://github.com/eea/volto-cca-policy/commit/0a4f91f39b7edc367bd4c127d6a8f273c7788361)]
|
|
3613
|
+
- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`8f1f9ce`](https://github.com/eea/volto-cca-policy/commit/8f1f9ce6c22805670cc0800d3c779b6d619d0f31)]
|
|
3548
3614
|
### [0.1.1](https://github.com/eea/volto-cca-policy/compare/0.1.0...0.1.1) - 13 December 2022
|
|
3549
3615
|
|
|
3550
3616
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eeacms/volto-cca-policy",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.75",
|
|
4
4
|
"description": "@eeacms/volto-cca-policy: Volto add-on",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"author": "European Environment Agency: IDM2 A-Team",
|
|
@@ -25,20 +25,20 @@
|
|
|
25
25
|
"@eeacms/volto-tabs-block",
|
|
26
26
|
"@eeacms/volto-datablocks",
|
|
27
27
|
"@eeacms/volto-embed",
|
|
28
|
+
"@eeacms/volto-plotlycharts",
|
|
28
29
|
"@eeacms/volto-globalsearch"
|
|
29
30
|
],
|
|
30
31
|
"dependencies": {
|
|
31
|
-
"@eeacms/volto-
|
|
32
|
-
"@eeacms/volto-
|
|
33
|
-
"@eeacms/volto-eea-
|
|
34
|
-
"@eeacms/volto-
|
|
35
|
-
"@eeacms/volto-embed": "^9.1.1",
|
|
32
|
+
"@eeacms/volto-datablocks": "7.3.3",
|
|
33
|
+
"@eeacms/volto-eea-design-system": "*",
|
|
34
|
+
"@eeacms/volto-eea-website-theme": "*",
|
|
35
|
+
"@eeacms/volto-embed": "*",
|
|
36
36
|
"@eeacms/volto-globalsearch": "2.1.2",
|
|
37
|
-
"@eeacms/volto-hero-block": "^7.1.0",
|
|
38
37
|
"@eeacms/volto-openlayers-map": "1.0.1",
|
|
39
|
-
"@eeacms/volto-
|
|
40
|
-
"@eeacms/volto-
|
|
41
|
-
"@eeacms/volto-
|
|
38
|
+
"@eeacms/volto-plotlycharts": "13.0.2",
|
|
39
|
+
"@eeacms/volto-searchlib": "2.1.6",
|
|
40
|
+
"@eeacms/volto-slate-label": "1.0.1",
|
|
41
|
+
"@eeacms/volto-tabs-block": "9.0.3",
|
|
42
42
|
"@elastic/search-ui": "1.21.2",
|
|
43
43
|
"@tanstack/react-table": "8.19.3",
|
|
44
44
|
"d3-array": "^2.12.1",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"react-visibility-sensor": "5.1.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
+
"@babel/plugin-proposal-export-default-from": "7.24.7",
|
|
50
51
|
"@cypress/code-coverage": "^3.10.0",
|
|
51
52
|
"@plone/scripts": "*",
|
|
52
53
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
|
@@ -16,7 +16,12 @@ export default function FeatureDisplay({ feature, onClose }) {
|
|
|
16
16
|
</div>
|
|
17
17
|
<p>
|
|
18
18
|
<strong>
|
|
19
|
-
<a
|
|
19
|
+
<a
|
|
20
|
+
className="dbitem"
|
|
21
|
+
href={feature.url}
|
|
22
|
+
target="_blank"
|
|
23
|
+
rel="noopener"
|
|
24
|
+
>
|
|
20
25
|
{feature.title}
|
|
21
26
|
</a>
|
|
22
27
|
</strong>
|
|
@@ -95,11 +95,11 @@
|
|
|
95
95
|
display: inline-block;
|
|
96
96
|
width: 12px;
|
|
97
97
|
height: 12px;
|
|
98
|
+
border-radius: 50%;
|
|
98
99
|
margin-top: 3px;
|
|
99
100
|
margin-right: 5px;
|
|
100
101
|
background-color: #005c96 !important;
|
|
101
102
|
background-color: #bbb;
|
|
102
|
-
border-radius: 50%;
|
|
103
103
|
|
|
104
104
|
// &.light-blue {
|
|
105
105
|
// background-color: #00ffff !important;
|