We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daf2c37 commit 8643fb6Copy full SHA for 8643fb6
docs/api/FieldControl.md
@@ -93,3 +93,21 @@ For eg.
93
parent: AbstractControl;
94
```
95
An instance of FormGroup or FormArray class as a parent control.
96
+
97
+##
98
+```ts
99
+meta: {[key: string]: any};
100
+```
101
+You can pass an object of custom variables to customize your component.
102
103
+For example:
104
105
106
+<FieldControl
107
+ meta={{
108
+ label: "First Name",
109
+ placeholder: "Enter your first name"
110
+ }}
111
+ ...
112
+/>
113
0 commit comments