├── .editorconfig ├── .gitignore ├── .travis.yml ├── README.md ├── example ├── README.md ├── demo.gif ├── package.json ├── public │ ├── index.html │ └── manifest.json └── src │ ├── App.js │ ├── index.css │ ├── index.js │ └── utils.js ├── jest.config.js ├── package.json ├── rollup.config.js ├── src ├── format.tsx ├── index.tsx ├── mask.tsx ├── styles.scss ├── typings.d.ts └── validate.tsx ├── tests ├── setupTests.ts ├── test.tsx └── utils.ts ├── tsconfig.json └── tsconfig.test.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/example/README.md -------------------------------------------------------------------------------- /example/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/example/demo.gif -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/example/public/index.html -------------------------------------------------------------------------------- /example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/example/public/manifest.json -------------------------------------------------------------------------------- /example/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/example/src/App.js -------------------------------------------------------------------------------- /example/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/example/src/index.css -------------------------------------------------------------------------------- /example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/example/src/index.js -------------------------------------------------------------------------------- /example/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/example/src/utils.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/format.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/src/format.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/mask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/src/mask.tsx -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- 1 | /* add css styles here (optional) */ 2 | // :global { } 3 | -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/validate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/src/validate.tsx -------------------------------------------------------------------------------- /tests/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/tests/setupTests.ts -------------------------------------------------------------------------------- /tests/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/tests/test.tsx -------------------------------------------------------------------------------- /tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/tests/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariohmol/react-brazil/HEAD/tsconfig.test.json --------------------------------------------------------------------------------