easy-forms-core 1.5.3 → 1.5.5

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.
@@ -536,6 +536,8 @@ type CustomComponent = (props: {
536
536
  error?: string;
537
537
  onChange: (value: any) => void;
538
538
  onBlur: () => void;
539
+ /** True cuando el campo es válido y debe mostrarse feedback verde (si está habilitado en el form) */
540
+ showValidFeedback?: boolean;
539
541
  }) => HTMLElement | null;
540
542
  /**
541
543
  * Registro de componentes personalizados
@@ -716,6 +718,8 @@ declare class EasyForm extends BrowserHTMLElement {
716
718
  * Maneja el cambio de un campo
717
719
  */
718
720
  private handleFieldChange;
721
+ /** Feedback verde en campos válidos (activo salvo `show-valid-feedback="false"`) */
722
+ private isValidFeedbackEnabled;
719
723
  private dependencyRenderTimeout;
720
724
  /**
721
725
  * Re-renderiza un campo array cuando se añaden o eliminan ítems.