Demos
Empty
<Field.OrganizationNumberonChange={(value) => console.log('onChange', value)}/>
Omit mask
<Field.OrganizationNumberonChange={(value) => console.log('onChange', value)}omitMask/>
Placeholder
<Field.OrganizationNumberplaceholder="Enter 9 digits..."onChange={(value) => console.log('onChange', value)}/>
Label
<Field.OrganizationNumberlabel="Label text"onChange={(value) => console.log('onChange', value)}/>
Label and value
<Field.OrganizationNumberlabel="Label text"value="987654321"onChange={(value) => console.log('onChange', value)}/>
Disabled
<Field.OrganizationNumbervalue="989898989"label="Label text"onChange={(value) => console.log('onChange', value)}disabled/>
Error
This is what is wrong...
<Field.OrganizationNumbervalue="007"label="Label text"onChange={(value) => console.log('onChange', value)}error={new FormError('This is what is wrong...')}/>
Validation - Required
<Field.OrganizationNumbervalue="123456789"label="Label text"onChange={(value) => console.log('onChange', value)}required/>