@northlight/ui 2.39.2 → 2.39.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13849,7 +13849,7 @@ const FormattedNumberInput = (_a) => {
13849
13849
  value: number.toString()
13850
13850
  });
13851
13851
  const validateRange = () => {
13852
- if (isNil(value))
13852
+ if (isNil(value) || isEmpty(value))
13853
13853
  return;
13854
13854
  const vNum = typeof value === "string" ? parseFloat(value) : value;
13855
13855
  if (isNil(numberOfDecimals) && !isPercentage) {