RadzenDatePicker doesn't update the value when clicking outside the box

RadzenDatePicker doesn't update the @bind-Value property when TimeOnly="true" and you just click outside the box instead of clicking OK button.
What's more, if you add RadzenRequiredValidator to this component, it passes null value on submit, although you can see that time has been set in the component.

Here is a code snippet to reproduce this problem:

<RadzenTemplateForm Data="@exitTime" TItem="TimeOnly?" Submit="OnSubmit">
    <RadzenStack Orientation="Orientation.Horizontal" JustifyContent="JustifyContent.Center" AlignItems="AlignItems.Center" Gap="0.5rem" class="rz-p-12">
        <RadzenLabel Text="Select Time" Component="ExitConfirmedTime" />
        <RadzenDatePicker @bind-Value="exitTime" TValue="TimeOnly?" Name="ExitConfirmedTime"
                                    ShowTime="true" TimeOnly="true" DateFormat="HH:mm" AllowClear="true"
                                    Placeholder="Exit time" />
        <RadzenRequiredValidator Component="ExitConfirmedTime" DefaultValue="null" Text="ExitTime is required"
                                 Popup="true" />
    </RadzenStack>
    <RadzenButton ButtonType="ButtonType.Submit" ButtonStyle="ButtonStyle.Success" Text="Confirm" />
</RadzenTemplateForm>

<EventConsole @ref=@console />

@code {
    EventConsole console;
    TimeOnly? exitTime;

    async Task OnSubmit(TimeOnly? model)
    {
        console.Log(model?.ToString() ?? "");
    }
}

You can set ShowTimeOkButton=false to avoid this.