@eeacms/volto-slate-footnote 7.2.5 → 7.2.6

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,20 @@ 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
+ ### [7.2.6](https://github.com/eea/volto-slate-footnote/compare/7.2.5...7.2.6) - 22 September 2025
8
+
9
+ #### :bug: Bug Fixes
10
+
11
+ - fix(footnotes): popup width due to large links [David Ichim - [`a054b56`](https://github.com/eea/volto-slate-footnote/commit/a054b56b3c4df7ca3fd1caf102bfdb4002fc9b49)]
12
+
13
+ #### :nail_care: Enhancements
14
+
15
+ - change(render): removed fixed bottom left position [David Ichim - [`9caf528`](https://github.com/eea/volto-slate-footnote/commit/9caf52809d783d54ac6a7839143351f32fd99c01)]
16
+
17
+ #### :house: Internal changes
18
+
19
+ - style: Automated code fix [eea-jenkins - [`da8e341`](https://github.com/eea/volto-slate-footnote/commit/da8e341c427e5f3575f5011cf8df09fd435a55f6)]
20
+
7
21
  ### [7.2.5](https://github.com/eea/volto-slate-footnote/compare/7.2.4...7.2.5) - 9 September 2025
8
22
 
9
23
  ### [7.2.4](https://github.com/eea/volto-slate-footnote/compare/7.2.3...7.2.4) - 11 July 2025
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-slate-footnote",
3
- "version": "7.2.5",
3
+ "version": "7.2.6",
4
4
  "description": "volto-slate-footnote: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -121,8 +121,6 @@ export const FootnoteElement = (props) => {
121
121
  open={open}
122
122
  onOpen={() => setOpen(true)}
123
123
  onClose={() => setOpen(false)}
124
- position="bottom left"
125
- pinned={true}
126
124
  mountNode={ref.current}
127
125
  on={['click', 'hover', 'focus']}
128
126
  trigger={
@@ -34,6 +34,11 @@ body {
34
34
  a[role='listitem']:hover {
35
35
  background-color: #ffff !important;
36
36
  }
37
+
38
+ .description-content {
39
+ min-width: 400px;
40
+ word-break: break-word;
41
+ }
37
42
  }
38
43
 
39
44
  .footnote-edit-node {
@@ -400,5 +400,5 @@ export const renderTextWithLinks = (text, zoteroId) => {
400
400
  }}
401
401
  />
402
402
  );
403
- else return <div>{result}</div>;
403
+ else return <div className="description-content">{result}</div>;
404
404
  };