Numeric Min Not Working

The Numeric Min value is not working. You can see this on the demo page (second entry
on https://blazor.radzen.com/numeric where the Min is set to 1 but it appears as 0).

The documentation (https://www.radzen.com/documentation/blazor/numeric/) also has TItem rather than TValue in the list of properties.

Also, is it possible to have TValue be determined at run time? Sometimes I need the value to be an int and others an decimal. Is there a way to do this with an expression?

It works normally on my end - just the initial value is not set and should be for this particular example:

Blazor will set TValue automatically if you use @bind-Value.

I change my code to use @bind-Value and it is working now. Thanks!