Surface - A component-based library for Phoenix LiveView

Hey Surface users! Is there a way to validate only the current field in the form? The one that user interacts with. In LiveView you can achieve it by adding the data attribute. Does anyone know how to do it in Surface?

 def error_tag(form, field) do
  Enum.map(Keyword.get_values(form.errors, field), fn error ->
    content_tag(:span, translate_error(error),
      class: "form-error",
      phx_feedback_for: input_name(form, field),
      data: [phx_error_for: input_id(form, field)]
    )
  end)
end