@stemy/ngx-dynamic-form 19.9.14 → 19.9.15
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.
|
@@ -332,6 +332,11 @@ export type FormFieldData = Pick<FormFieldProps, "label" | "labelAlign" | "descr
|
|
|
332
332
|
* This is a custom serializer callback function. (Can't be defined from JSON schema because it is a JS callback)
|
|
333
333
|
*/
|
|
334
334
|
serializer?: FormFieldSerializer;
|
|
335
|
+
/**
|
|
336
|
+
* Use `defaultValue` to initialize it the model.
|
|
337
|
+
* If this is provided and the value of the model at compile-time is undefined, then the value of the model will be assigned to `defaultValue`.
|
|
338
|
+
*/
|
|
339
|
+
defaultValue?: any;
|
|
335
340
|
/**
|
|
336
341
|
* Puts the field in a custom field set
|
|
337
342
|
*/
|