RadzenDatePicker does not update bind value whe only showing months and years

I have a RadzenDatePicker like the following:

<RadzenDatePicker @bind-Value="@DateTimeValue"
ShowTime="false"
Inline="true"
ShowDays="false" />
@code {
[Parameter]
public DateTime? DateTimeValue { get; set; }
}

the DateTimeValue gets loaded correctly, but if I update the datetime, the value doesn't get updated. Seems like without the date selection, the update event doesn't get fired. I've also tried adding a Chage event to see if I can capture the updates, but no luck either.

Indeed, this is how the DatePicker works - will update the value only if the day is selected.