Simple code for input masks like phone, zipcode, cpf, cnpj, date...
Don't use mask and number tags... For example:
Input label="Simple Input" name="simpleInput" />
Use # to construct a alphanumeric mask. For example:
Input label="Alpha Input" mask='###/###(##)' name="alphaInputName" />
Use 9 to construct a onlynumber + number tag. For example:
Input label="Mobile Input" mask='(99) 99999-9999' name="mobileInput" number />
MIT