Hi Guys,
I have found the problem of the min and max input parameters;
In the 'InputNumberMask -> InitIMask -> RegisterInputMask' the code;
if ($parameters.Min !== 0) {
maskOptions.min = $parameters.Min;
}
if ($parameters.Max !== 0) {
maskOptions.max = $parameters.Max;
}
must be changed to
if ($parameters.Min !== 0) {
maskOptions.blocks.num.min = $parameters.Min;
}
if ($parameters.Max !== 0) {
maskOptions.blocks.num.max = $parameters.Max;
}
Would you change this in the code and publish a new version of the component?
Kind regards,
Furkan Çetin