What problem does this feature solve?
Currently if min/max callback return null, the behaviour is unexpected.
We can still use the auto calculated max value if the callback returns null
What does the proposed API look like?
max: function (val) {
return val > 0 ? val : null;
}