@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
|
@@ -247,9 +247,7 @@ const UnconnectedImageInput = (props) => {
|
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
const dataUrl = await readBlobAsDataURL(blob);
|
|
250
|
-
|
|
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:
|
|
424
|
+
background-color: @ccaYellowColor;
|
|
425
425
|
box-shadow:
|
|
426
|
-
0px 0px 0px 1px #
|
|
426
|
+
0px 0px 0px 1px #e1d098 inset,
|
|
427
427
|
0px 0px 0px 0px rgba(0, 0, 0, 0);
|
|
428
428
|
|
|
429
429
|
p,
|