@senior-agronegocio/angular-components 0.0.70-origination → 0.0.71-origination
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/senior-agronegocio-angular-components.umd.js +114 -5
- package/bundles/senior-agronegocio-angular-components.umd.js.map +1 -1
- package/bundles/senior-agronegocio-angular-components.umd.min.js +1 -1
- package/bundles/senior-agronegocio-angular-components.umd.min.js.map +1 -1
- package/common/agro-regex.constant.d.ts +10 -0
- package/esm2015/common/agro-regex.constant.js +11 -1
- package/esm2015/form-validator/agro-form-validator.js +94 -6
- package/esm5/common/agro-regex.constant.js +11 -1
- package/esm5/form-validator/agro-form-validator.js +106 -6
- package/fesm2015/senior-agronegocio-angular-components.js +103 -5
- package/fesm2015/senior-agronegocio-angular-components.js.map +1 -1
- package/fesm5/senior-agronegocio-angular-components.js +115 -6
- package/fesm5/senior-agronegocio-angular-components.js.map +1 -1
- package/form-validator/agro-form-validator.d.ts +14 -0
- package/package.json +1 -1
|
@@ -100,4 +100,18 @@ export declare class AgroFormValidator {
|
|
|
100
100
|
* @returns
|
|
101
101
|
*/
|
|
102
102
|
static objectPropertyValidator(propertyName: string): ValidatorFn;
|
|
103
|
+
/**
|
|
104
|
+
* Valida se o campo é um CPF (Cadastro de Pessoa Física) válido.
|
|
105
|
+
*/
|
|
106
|
+
static CPFValidator(): ValidatorFn;
|
|
107
|
+
/**
|
|
108
|
+
* Validator de CNPJ (Cadastro Nacional da Pessoa Jurídica).
|
|
109
|
+
* @returns
|
|
110
|
+
*/
|
|
111
|
+
CNPJValidator(): ValidatorFn;
|
|
112
|
+
/**
|
|
113
|
+
* Valida se a placa do veículo é válida.
|
|
114
|
+
* @returns
|
|
115
|
+
*/
|
|
116
|
+
licensePlateValidator(): ValidatorFn;
|
|
103
117
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "../node_modules/ng-packagr/package.schema.json",
|
|
3
3
|
"name": "@senior-agronegocio/angular-components",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.71-origination",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "http://git.senior.com.br/agro/angular-components"
|