RadzenDatePicker tw-way bind oninput

When using two-way bind, the bind only happens for the RadzenDatePicker when the user click outside the component.

<RadzenFormField Text="New Date" Variant="Variant.Outlined">
    <RadzenDatePicker TValue="DateTime?" DateFormat="dd/MM/yyyy"
    @bind-Value="Valor" />
</RadzenFormField>

For the normal Blazor input I can use @bind="Valor" and @bind:event="oninput" to make teh value when teh user types. Is that possíble with the RadzenDatePicker ?

Such type of binding is not supported for the DatePicker component.

My goal is to show validation as the user type, there any way to archive this?