@flowerforce/flower-react 3.3.0 → 3.3.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
@@ -85,7 +85,7 @@ export type FlowerFieldProps<T extends Record<string, any> = Record<string, any>
|
|
85
85
|
asyncWaitingError?: string;
|
86
86
|
/** An object containing the display rules of that component. When the conditions are not satisfied, the children is hidden.
|
87
87
|
*
|
88
|
-
* Example: rules={{ $and: [{ name: { $
|
88
|
+
* Example: rules={{ $and: [{ name: { $exists: true } }] }}
|
89
89
|
*/
|
90
90
|
rules?: RulesObject<T> | FunctionRule;
|
91
91
|
/** The name of the flow from which read the data
|
@@ -11,7 +11,7 @@ export type FlowerRuleProps = {
|
|
11
11
|
value?: any;
|
12
12
|
/** An object or function containing the display rules of that component. When the conditions are not satisfied, the children is hidden.
|
13
13
|
*
|
14
|
-
* Example: rules={{ $and: [{ name: { $
|
14
|
+
* Example: rules={{ $and: [{ name: { $exists: true } }] }}
|
15
15
|
* Example: rules={(state) => state... === true}
|
16
16
|
* if missing it is always visible
|
17
17
|
*/
|
@@ -11,7 +11,7 @@ export type FlowerValueProps = {
|
|
11
11
|
value?: any;
|
12
12
|
/** An object containing the display rules of that component. When the conditions are not satisfied, the children is hidden.
|
13
13
|
*
|
14
|
-
* Example: rules={{ $and: [{ name: { $
|
14
|
+
* Example: rules={{ $and: [{ name: { $exists: true } }] }}
|
15
15
|
*/
|
16
16
|
rules?: RulesObject<any> | FunctionRule;
|
17
17
|
/** The FlowerValue's children */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@flowerforce/flower-react",
|
3
|
-
"version": "3.3.
|
3
|
+
"version": "3.3.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.
|
37
|
+
"@flowerforce/flower-core": "3.2.1",
|
38
38
|
"@reduxjs/toolkit": "^2.2.4",
|
39
39
|
"lodash": "^4.17.21",
|
40
40
|
"react-redux": "^9.1.2",
|