@flowerforce/flower-react 3.4.1-beta.1 → 3.4.1

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,15 @@
1
+ ## 3.4.1 (2024-10-02)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - remove wrong deps in FlowerField onChange ([#63](https://github.com/flowerforce/flower/pull/63))
7
+
8
+
9
+ ### 🧱 Updated Dependencies
10
+
11
+ - Updated flower-core to 3.2.3
12
+
1
13
  ## 3.4.0 (2024-09-16)
2
14
 
3
15
 
@@ -56,7 +56,7 @@ type useFlowerActions = {
56
56
  /**Use this function to reset the flow data and history */
57
57
  restart: (payload?: RouteRestart) => void;
58
58
  /**Get current node by flowName or current flow */
59
- getCurrentNodeId: (flowName?: string) => void;
59
+ getCurrentNodeId: (flowName?: string) => string;
60
60
  };
61
61
  export type UseFlower = (options?: UseFlowerProps) => useFlowerActions & {
62
62
  /**The flow in which the hook is used.*/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowerforce/flower-react",
3
- "version": "3.4.1-beta.1",
3
+ "version": "3.4.1",
4
4
  "description": "FlowerJS components, hooks and utils for React.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,7 +34,7 @@
34
34
  "typescript": "^5.4.5"
35
35
  },
36
36
  "dependencies": {
37
- "@flowerforce/flower-core": "3.2.3-beta.5",
37
+ "@flowerforce/flower-core": "3.2.3",
38
38
  "@reduxjs/toolkit": "^2.2.4",
39
39
  "lodash": "^4.17.21",
40
40
  "react-redux": "^9.1.2",