@bolttech/form-engine 0.11.6 → 0.11.7
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 +7 -0
- package/README.md +3 -2
- package/{asFormField-4dda0624.js → asFormField-7288a0a4.js} +2 -2
- package/{asFormField-4dda0624.js.map → asFormField-7288a0a4.js.map} +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/react.js +1 -1
- package/src/adapters/react/asFormField.d.ts +1 -1
- package/src/adapters/react/types.d.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.11.7](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.11.6...form-engine-0.11.7) (2024-03-11)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* asFormField - fieldInstance - disabled ([accee3c](http://bitbucket.org/gofrank/bolttech-frontend/commit/accee3c2430558b9040c5f537f458395008abac6))
|
|
11
|
+
|
|
5
12
|
## [0.11.6](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.11.5...form-engine-0.11.6) (2024-03-07)
|
|
6
13
|
|
|
7
14
|
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Achieve form logic re-usage with forms expressed in json format.
|
|
4
4
|
|
|
5
|
-
> stable version 0.11.
|
|
5
|
+
> stable version 0.11.7
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -1824,7 +1824,8 @@ And this will give you the following properties in addition to the native ones o
|
|
|
1824
1824
|
| formId | string | Form id that you need to create and integrate the field. |
|
|
1825
1825
|
| visibility | boolean | It's a prop that you can use to hide the component and control this state outside the component. |
|
|
1826
1826
|
| name | string | Name of the component similar to name prop name on TComponent type. This name will be used later to correlate the field with the value, and you will be able to read it. |
|
|
1827
|
-
| value | any | The value of the field that you can control outside the component.
|
|
1827
|
+
| value | any | The value of the field that you can control outside the component.
|
|
1828
|
+
| disabled | boolean | The disabled of the field that you can control outside the component. |
|
|
1828
1829
|
|
|
1829
1830
|
### Example
|
|
1830
1831
|
|