@eeacms/volto-cca-policy 0.3.109 → 0.3.110

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,16 @@ 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.110](https://github.com/eea/volto-cca-policy/compare/0.3.109...0.3.110) - 8 April 2026
8
+
9
+ #### :bug: Bug Fixes
10
+
11
+ - fix: filename handling in ImageWidget [Krisztina Elekes - [`a66267b`](https://github.com/eea/volto-cca-policy/commit/a66267b6a639c7a3d9f0a7516efec0ecb8d6f02e)]
12
+
13
+ #### :nail_care: Enhancements
14
+
15
+ - change(style): info message background color - refs #296805 [kreafox - [`1466f80`](https://github.com/eea/volto-cca-policy/commit/1466f80eec4840fcd83102659fca3ea64f005de8)]
16
+
7
17
  ### [0.3.109](https://github.com/eea/volto-cca-policy/compare/0.3.108...0.3.109) - 1 April 2026
8
18
 
9
19
  #### :nail_care: Enhancements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-cca-policy",
3
- "version": "0.3.109",
3
+ "version": "0.3.110",
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",
@@ -247,9 +247,7 @@ const UnconnectedImageInput = (props) => {
247
247
  }
248
248
 
249
249
  const dataUrl = await readBlobAsDataURL(blob);
250
- const filenameFromUrl = getFilenameFromUrl(url, fallbackFilename);
251
-
252
- setFileValueFromDataUrl(dataUrl, filenameFromUrl);
250
+ setFileValueFromDataUrl(dataUrl, fallbackFilename);
253
251
  } catch (e) {
254
252
  setError(intl.formatMessage(messages.imageImportFailed));
255
253
  } finally {
@@ -421,9 +421,9 @@ iframe {
421
421
  padding: 0.7rem;
422
422
  margin-top: 0 !important;
423
423
  margin-bottom: 1.5em !important;
424
- background-color: #f9f9f9;
424
+ background-color: @ccaYellowColor;
425
425
  box-shadow:
426
- 0px 0px 0px 1px #d2d2d2 inset,
426
+ 0px 0px 0px 1px #e1d098 inset,
427
427
  0px 0px 0px 0px rgba(0, 0, 0, 0);
428
428
 
429
429
  p,
@@ -12,6 +12,7 @@
12
12
  @secondaryColor: #005c97;
13
13
  @ccaGreenColor: #8a9c39;
14
14
  @ccaOrangeColor: #ef7000;
15
+ @ccaYellowColor: #f3e2ab;
15
16
 
16
17
  @linkColor: #006bb8;
17
18
  @linkHoverColor: #004b7f;
@@ -256,7 +256,7 @@ hr {
256
256
  font-size: 0.9rem;
257
257
 
258
258
  &.warning {
259
- background: #f3e2ab;
259
+ background: @ccaYellowColor;
260
260
  }
261
261
 
262
262
  &.info {