@flowerforce/flower-core 3.3.1-beta.2 → 3.5.0

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
@@ -1,3 +1,22 @@
1
+ ## 3.5.0 (2025-04-19)
2
+
3
+
4
+ ### 🚀 Features
5
+
6
+ - remove data blank from init nodes ([#80](https://github.com/flowerforce/flower/pull/80))
7
+
8
+ ## 3.4.0 (2025-04-19)
9
+
10
+
11
+ ### 🚀 Features
12
+
13
+ - added remove value on hide element ([#68](https://github.com/flowerforce/flower/pull/68))
14
+
15
+
16
+ ### 🩹 Fixes
17
+
18
+ - avoid validate hidden field ([#67](https://github.com/flowerforce/flower/pull/67))
19
+
1
20
  ## 3.3.0 (2024-10-08)
2
21
 
3
22
 
package/dist/index.cjs.js CHANGED
@@ -592,7 +592,7 @@ const FlowerCoreReducers = {
592
592
  history,
593
593
  nodes: generateNodes(payload.nodes),
594
594
  nextRules: makeObjectRules(payload.nodes),
595
- data: payload.initialData
595
+ data: payload.initialData === undefined ? state.data : payload.initialData
596
596
  });
597
597
  },
598
598
  // TODO usato solo da flower su vscode
package/dist/index.esm.js CHANGED
@@ -590,7 +590,7 @@ const FlowerCoreReducers = {
590
590
  history,
591
591
  nodes: generateNodes(payload.nodes),
592
592
  nextRules: makeObjectRules(payload.nodes),
593
- data: payload.initialData
593
+ data: payload.initialData === undefined ? state.data : payload.initialData
594
594
  });
595
595
  },
596
596
  // TODO usato solo da flower su vscode
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowerforce/flower-core",
3
- "version": "3.3.1-beta.2",
3
+ "version": "3.5.0",
4
4
  "description": "Core functions for flowerJS",
5
5
  "repository": {
6
6
  "type": "git",