easy-forms-core 1.2.6 → 1.2.8
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.d.ts +1 -1
- package/dist/easy-form.js +203 -5
- package/dist/easy-form.js.map +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +204 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -369,7 +369,7 @@ interface Step {
|
|
|
369
369
|
/**
|
|
370
370
|
* Tipos de temas disponibles
|
|
371
371
|
*/
|
|
372
|
-
type FormTheme = 'plano' | 'tradicional' | 'material' | 'rounded-shadow' | 'lines' | 'shadcn' | 'chakra' | 'mantine' | 'glass' | 'bordered' | 'minimal';
|
|
372
|
+
type FormTheme = 'plano' | 'tradicional' | 'material' | 'rounded-shadow' | 'lines' | 'shadcn' | 'chakra' | 'mantine' | 'glass' | 'bordered' | 'minimal' | 'efc';
|
|
373
373
|
/**
|
|
374
374
|
* Colores personalizados del formulario
|
|
375
375
|
*/
|
|
@@ -1014,6 +1014,11 @@ 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;
|
|
1017
1022
|
/**
|
|
1018
1023
|
* Valida todos los campos de un formulario
|
|
1019
1024
|
*/
|