easy-forms-core 1.2.7 → 1.2.9
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/dist/easy-form.js +7 -7
- package/dist/easy-form.js.map +1 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1014,6 +1014,15 @@ declare class ValidationEngine {
|
|
|
1014
1014
|
* Obtiene mensaje por defecto para una validación
|
|
1015
1015
|
*/
|
|
1016
1016
|
private getDefaultMessage;
|
|
1017
|
+
/**
|
|
1018
|
+
* Evalúa si un campo debe ser validado basándose en sus dependencias
|
|
1019
|
+
* Un campo no debe validarse si está oculto por una condición
|
|
1020
|
+
*/
|
|
1021
|
+
private shouldValidateField;
|
|
1022
|
+
/**
|
|
1023
|
+
* Evalúa una condición simple
|
|
1024
|
+
*/
|
|
1025
|
+
private evaluateCondition;
|
|
1017
1026
|
/**
|
|
1018
1027
|
* Valida todos los campos de un formulario
|
|
1019
1028
|
*/
|