Component variables - ngx-form/element GitHub Wiki

autocomplete: autocomplete;  

after subbmited, changed, cancelled destroy or not destroy html element

destroy: DestroyInterface;  

html element should be disabled or not disabled

disabled: disabled;  

html element you want to create http://w3c.github.io/html-reference/elements.html

element: element;  

resolved component prepared to create

elementComponent: component;  

hint, for example in input

hint: any;  

primary model key

key: string;  

model you want to display in newely created html element with specified key

model: any  

can be used in html input element type range as maximum value

max: number;  

can be used in html input element type range as minimum value

min: number;  

can be used in html input element with hint defined to gives information about value maximum character length

maxlength: number;  

can be used in html input element with hint defined to gives information about value minimum character length

minlength: number;  

text that is displayed instead of real for example input value

placeholder: string;  

attribute to have form element required

required: required;