@bolttech/form-engine 3.1.1-beta.3 → 3.1.2-beta.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/README.md +6 -5
- package/index.esm.js +570 -271
- package/package.json +2 -2
- package/src/components/AsFormFieldBuilder/AsFormFieldBuilder.type.d.ts +6 -3
- package/src/components/AsFormFieldRepeater/AsFormFieldRepeater.d.ts +23 -0
- package/src/components/FieldWrapper/FieldWrapper.d.ts +1 -1
- package/src/components/FieldWrapper/FieldWrapper.type.d.ts +1 -0
- package/src/context/FormGroupContext.type.d.ts +1 -1
- package/src/helpers/helpers.d.ts +2 -1
package/README.md
CHANGED
|
@@ -1181,8 +1181,9 @@ Ex:
|
|
|
1181
1181
|
|
|
1182
1182
|
Other than schema component properties like `validations`, `api`, etc.., it has additional properties to define the component, the associated form id and the name
|
|
1183
1183
|
|
|
1184
|
-
| method | type | description
|
|
1185
|
-
| --------- | ---------- |
|
|
1186
|
-
| mapper | TMapper<T> | mapper configuration to define the component
|
|
1187
|
-
| name | string | field name to be identified on the form
|
|
1188
|
-
| formIndex | string | index of the form to be identified on the formGroup
|
|
1184
|
+
| method | type | description |
|
|
1185
|
+
| --------- | ---------- | ------------------------------------------------------------------------------------------------------------------------ |
|
|
1186
|
+
| mapper | TMapper<T> | mapper configuration to define the component |
|
|
1187
|
+
| name | string | field name to be identified on the form |
|
|
1188
|
+
| formIndex | string | index of the form to be identified on the formGroup |
|
|
1189
|
+
| component | string | if mappers is provided from the formgroup context, you can assign the mapper by it's name instead of whole mapper config |
|