@eeacms/volto-flourish 0.1.4 → 0.1.5

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,11 +4,13 @@ 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.1.4](https://github.com/eea/volto-flourish/compare/0.1.3...0.1.4) - 18 February 2025
7
+ ### [0.1.5](https://github.com/eea/volto-flourish/compare/0.1.4...0.1.5) - 20 February 2025
8
8
 
9
9
  #### :hammer_and_wrench: Others
10
10
 
11
- - Fix re-display of flourish [Tiberiu Ichim - [`9c6a2c0`](https://github.com/eea/volto-flourish/commit/9c6a2c06c746bf4fb00aa1ed06ed4122152462ae)]
11
+ - Longer timeout, log nodes [Tiberiu Ichim - [`bbaf943`](https://github.com/eea/volto-flourish/commit/bbaf943454a8da6498004c0be781d64f1819cabb)]
12
+ ### [0.1.4](https://github.com/eea/volto-flourish/compare/0.1.3...0.1.4) - 18 February 2025
13
+
12
14
  ### [0.1.3](https://github.com/eea/volto-flourish/compare/0.1.2...0.1.3) - 17 February 2025
13
15
 
14
16
  #### :bug: Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-flourish",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "@eeacms/volto-flourish: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -19,8 +19,12 @@ export default function Flourish({ baseUrl }) {
19
19
  } else {
20
20
  setTimeout(() => {
21
21
  const domNodes = document.querySelectorAll('.flourish-embed');
22
- domNodes.forEach((domNode) => window.Flourish.loadEmbed(domNode));
23
- }, 10);
22
+ domNodes.forEach((domNode) => {
23
+ window.Flourish.loadEmbed(domNode);
24
+ // eslint-disable-next-line no-console
25
+ console.log('Loaded Flourish for', domNode);
26
+ });
27
+ }, 500);
24
28
  }
25
29
 
26
30
  return () => {};