├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── _config.yml ├── angular.json ├── browserslist ├── karma.conf.js ├── license ├── ng-package.json ├── package.json ├── protractor.conf.js ├── public_api.ts ├── readme.md ├── src ├── app │ ├── commons │ │ ├── constants.ts │ │ ├── utils.ts │ │ └── value-acessor-base.ts │ ├── components │ │ ├── cep │ │ │ ├── cep.component.css │ │ │ ├── cep.component.html │ │ │ ├── cep.component.spec.ts │ │ │ ├── cep.component.ts │ │ │ ├── cep.mask.directive.ts │ │ │ ├── cep.module.ts │ │ │ └── readme.md │ │ ├── cnpj │ │ │ ├── cnpj.component.container.ts │ │ │ ├── cnpj.component.css │ │ │ ├── cnpj.component.html │ │ │ ├── cnpj.component.spec.ts │ │ │ ├── cnpj.component.ts │ │ │ ├── cnpj.mask.directive.ts │ │ │ ├── cnpj.module.ts │ │ │ └── readme.md │ │ ├── components.module.ts │ │ ├── cpf │ │ │ ├── cpf.component.container.ts │ │ │ ├── cpf.component.css │ │ │ ├── cpf.component.html │ │ │ ├── cpf.component.spec.ts │ │ │ ├── cpf.component.ts │ │ │ ├── cpf.mask.directive.ts │ │ │ ├── cpf.module.ts │ │ │ └── readme.md │ │ ├── dinheiro │ │ │ ├── dinheiro.component.css │ │ │ ├── dinheiro.component.html │ │ │ ├── dinheiro.component.spec.ts │ │ │ ├── dinheiro.component.ts │ │ │ ├── dinheiro.mask.directive.ts │ │ │ ├── dinheiro.module.ts │ │ │ └── readme.ms │ │ ├── estados │ │ │ ├── estado.ts │ │ │ ├── estados.component.css │ │ │ ├── estados.component.html │ │ │ ├── estados.component.spec.ts │ │ │ ├── estados.component.ts │ │ │ ├── estados.module.ts │ │ │ └── readme.md │ │ ├── hora │ │ │ ├── hora.component.css │ │ │ ├── hora.component.html │ │ │ ├── hora.component.spec.ts │ │ │ ├── hora.component.ts │ │ │ ├── hora.mask.directive.ts │ │ │ ├── hora.module.ts │ │ │ └── readme.md │ │ ├── percentual │ │ │ ├── percentual.component.css │ │ │ ├── percentual.component.html │ │ │ ├── percentual.component.spec.ts │ │ │ ├── percentual.component.ts │ │ │ ├── percentual.mask.directive.ts │ │ │ ├── percentual.module.ts │ │ │ └── readme.md │ │ ├── peso │ │ │ ├── peso.component.css │ │ │ ├── peso.component.html │ │ │ ├── peso.component.spec.ts │ │ │ ├── peso.component.ts │ │ │ ├── peso.module.ts │ │ │ └── readme.md │ │ └── telefone │ │ │ ├── readme.md │ │ │ ├── telefone.component.css │ │ │ ├── telefone.component.html │ │ │ ├── telefone.component.spec.ts │ │ │ ├── telefone.component.ts │ │ │ ├── telefone.mask.directive.ts │ │ │ └── telefone.module.ts │ ├── demo │ │ ├── demo.component.css │ │ ├── demo.component.html │ │ ├── demo.component.ts │ │ └── demo.module.ts │ ├── ngx-br.module.ts │ ├── pipes │ │ ├── cep.pipe.ts │ │ ├── cnpj.pipe.ts │ │ ├── cpf-ou-cnpj.pipe.ts │ │ ├── cpf.pipe.ts │ │ ├── pipes.module.ts │ │ ├── readme.md │ │ └── telefone.pipe.ts │ └── validators │ │ ├── cnpj.validator.ts │ │ ├── cpf.validator.ts │ │ ├── dinheiro.required.validator.ts │ │ ├── hora.validator.ts │ │ ├── percentual.required.validator.ts │ │ └── validators.ts ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/.travis.yml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/_config.yml -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/browserslist -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/karma.conf.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/license -------------------------------------------------------------------------------- /ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/ng-package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './src/app/ngx-br.module'; 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/readme.md -------------------------------------------------------------------------------- /src/app/commons/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/commons/constants.ts -------------------------------------------------------------------------------- /src/app/commons/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/commons/utils.ts -------------------------------------------------------------------------------- /src/app/commons/value-acessor-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/commons/value-acessor-base.ts -------------------------------------------------------------------------------- /src/app/components/cep/cep.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/cep/cep.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cep/cep.component.html -------------------------------------------------------------------------------- /src/app/components/cep/cep.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cep/cep.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/cep/cep.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cep/cep.component.ts -------------------------------------------------------------------------------- /src/app/components/cep/cep.mask.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cep/cep.mask.directive.ts -------------------------------------------------------------------------------- /src/app/components/cep/cep.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cep/cep.module.ts -------------------------------------------------------------------------------- /src/app/components/cep/readme.md: -------------------------------------------------------------------------------- 1 | ### Cep 2 | -------------------------------------------------------------------------------- /src/app/components/cnpj/cnpj.component.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cnpj/cnpj.component.container.ts -------------------------------------------------------------------------------- /src/app/components/cnpj/cnpj.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/cnpj/cnpj.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cnpj/cnpj.component.html -------------------------------------------------------------------------------- /src/app/components/cnpj/cnpj.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cnpj/cnpj.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/cnpj/cnpj.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cnpj/cnpj.component.ts -------------------------------------------------------------------------------- /src/app/components/cnpj/cnpj.mask.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cnpj/cnpj.mask.directive.ts -------------------------------------------------------------------------------- /src/app/components/cnpj/cnpj.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cnpj/cnpj.module.ts -------------------------------------------------------------------------------- /src/app/components/cnpj/readme.md: -------------------------------------------------------------------------------- 1 | ### CNPJ 2 | -------------------------------------------------------------------------------- /src/app/components/components.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/components.module.ts -------------------------------------------------------------------------------- /src/app/components/cpf/cpf.component.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cpf/cpf.component.container.ts -------------------------------------------------------------------------------- /src/app/components/cpf/cpf.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/cpf/cpf.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cpf/cpf.component.html -------------------------------------------------------------------------------- /src/app/components/cpf/cpf.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cpf/cpf.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/cpf/cpf.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cpf/cpf.component.ts -------------------------------------------------------------------------------- /src/app/components/cpf/cpf.mask.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cpf/cpf.mask.directive.ts -------------------------------------------------------------------------------- /src/app/components/cpf/cpf.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/cpf/cpf.module.ts -------------------------------------------------------------------------------- /src/app/components/cpf/readme.md: -------------------------------------------------------------------------------- 1 | ### CPF 2 | -------------------------------------------------------------------------------- /src/app/components/dinheiro/dinheiro.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dinheiro/dinheiro.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/dinheiro/dinheiro.component.html -------------------------------------------------------------------------------- /src/app/components/dinheiro/dinheiro.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/dinheiro/dinheiro.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dinheiro/dinheiro.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/dinheiro/dinheiro.component.ts -------------------------------------------------------------------------------- /src/app/components/dinheiro/dinheiro.mask.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/dinheiro/dinheiro.mask.directive.ts -------------------------------------------------------------------------------- /src/app/components/dinheiro/dinheiro.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/dinheiro/dinheiro.module.ts -------------------------------------------------------------------------------- /src/app/components/dinheiro/readme.ms: -------------------------------------------------------------------------------- 1 | ### Dinheiro 2 | -------------------------------------------------------------------------------- /src/app/components/estados/estado.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/estados/estado.ts -------------------------------------------------------------------------------- /src/app/components/estados/estados.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/estados/estados.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/estados/estados.component.html -------------------------------------------------------------------------------- /src/app/components/estados/estados.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/estados/estados.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/estados/estados.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/estados/estados.component.ts -------------------------------------------------------------------------------- /src/app/components/estados/estados.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/estados/estados.module.ts -------------------------------------------------------------------------------- /src/app/components/estados/readme.md: -------------------------------------------------------------------------------- 1 | ### Estados 2 | -------------------------------------------------------------------------------- /src/app/components/hora/hora.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/hora/hora.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/hora/hora.component.html -------------------------------------------------------------------------------- /src/app/components/hora/hora.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/hora/hora.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/hora/hora.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/hora/hora.component.ts -------------------------------------------------------------------------------- /src/app/components/hora/hora.mask.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/hora/hora.mask.directive.ts -------------------------------------------------------------------------------- /src/app/components/hora/hora.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/hora/hora.module.ts -------------------------------------------------------------------------------- /src/app/components/hora/readme.md: -------------------------------------------------------------------------------- 1 | ### Hora 2 | -------------------------------------------------------------------------------- /src/app/components/percentual/percentual.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/percentual/percentual.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/percentual/percentual.component.html -------------------------------------------------------------------------------- /src/app/components/percentual/percentual.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/percentual/percentual.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/percentual/percentual.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/percentual/percentual.component.ts -------------------------------------------------------------------------------- /src/app/components/percentual/percentual.mask.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/percentual/percentual.mask.directive.ts -------------------------------------------------------------------------------- /src/app/components/percentual/percentual.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/percentual/percentual.module.ts -------------------------------------------------------------------------------- /src/app/components/percentual/readme.md: -------------------------------------------------------------------------------- 1 | ### Percentual 2 | -------------------------------------------------------------------------------- /src/app/components/peso/peso.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/peso/peso.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/peso/peso.component.html -------------------------------------------------------------------------------- /src/app/components/peso/peso.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/peso/peso.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/peso/peso.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/peso/peso.component.ts -------------------------------------------------------------------------------- /src/app/components/peso/peso.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/peso/peso.module.ts -------------------------------------------------------------------------------- /src/app/components/peso/readme.md: -------------------------------------------------------------------------------- 1 | ### Peso 2 | -------------------------------------------------------------------------------- /src/app/components/telefone/readme.md: -------------------------------------------------------------------------------- 1 | ### Telefone 2 | -------------------------------------------------------------------------------- /src/app/components/telefone/telefone.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/telefone/telefone.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/telefone/telefone.component.html -------------------------------------------------------------------------------- /src/app/components/telefone/telefone.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/telefone/telefone.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/telefone/telefone.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/telefone/telefone.component.ts -------------------------------------------------------------------------------- /src/app/components/telefone/telefone.mask.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/telefone/telefone.mask.directive.ts -------------------------------------------------------------------------------- /src/app/components/telefone/telefone.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/components/telefone/telefone.module.ts -------------------------------------------------------------------------------- /src/app/demo/demo.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/demo/demo.component.css -------------------------------------------------------------------------------- /src/app/demo/demo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/demo/demo.component.html -------------------------------------------------------------------------------- /src/app/demo/demo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/demo/demo.component.ts -------------------------------------------------------------------------------- /src/app/demo/demo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/demo/demo.module.ts -------------------------------------------------------------------------------- /src/app/ngx-br.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/ngx-br.module.ts -------------------------------------------------------------------------------- /src/app/pipes/cep.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/pipes/cep.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/cnpj.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/pipes/cnpj.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/cpf-ou-cnpj.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/pipes/cpf-ou-cnpj.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/cpf.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/pipes/cpf.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/pipes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/pipes/pipes.module.ts -------------------------------------------------------------------------------- /src/app/pipes/readme.md: -------------------------------------------------------------------------------- 1 | ### Pipes 2 | -------------------------------------------------------------------------------- /src/app/pipes/telefone.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/pipes/telefone.pipe.ts -------------------------------------------------------------------------------- /src/app/validators/cnpj.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/validators/cnpj.validator.ts -------------------------------------------------------------------------------- /src/app/validators/cpf.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/validators/cpf.validator.ts -------------------------------------------------------------------------------- /src/app/validators/dinheiro.required.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/validators/dinheiro.required.validator.ts -------------------------------------------------------------------------------- /src/app/validators/hora.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/validators/hora.validator.ts -------------------------------------------------------------------------------- /src/app/validators/percentual.required.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/validators/percentual.required.validator.ts -------------------------------------------------------------------------------- /src/app/validators/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/app/validators/validators.ts -------------------------------------------------------------------------------- /src/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /src/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/e2e/app.po.ts -------------------------------------------------------------------------------- /src/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbfontana/ngx-br/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------