Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 1.27 KB

README.md

File metadata and controls

27 lines (18 loc) · 1.27 KB

🇧🇷 BReactComponents 🇧🇷

Reusable Material-UI React components for Brazilian apps

codebeat badge travis badge MIT License


Getting started

  1. Navigate to your project's folder and run npm install breact-components --save
  2. Import components you wish to use
import { CPFTextField, CNPJTextField, CEPTextField } from 'breact-components';

Available parameters and methods

  • value : String(Optional) Initial value
  • editing: boolean Whether you want to allow the value to be edited or to simply display it.
  • placeholder: String(Optional) Placeholder/tip to help the user.
  • errorMessage: String(Optional) On validated fields (CPF and CNPJ), the message that will be shown in case validation fails.
  • getValue(): String Returns the current value of the TextField, without the mask.