@stemy/ngx-dynamic-form 10.2.26 → 10.2.27

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.
@@ -900,8 +900,10 @@
900
900
  mask: ngxUtils.ObjectUtils.isString(property.mask) ? property.mask : null,
901
901
  pattern: ngxUtils.ObjectUtils.isString(property.pattern) ? property.pattern : null,
902
902
  step: isNaN(sub.step) ? (isNaN(property.step) ? 1 : property.step) : sub.step,
903
- min: isNaN(sub.minimum) ? (isNaN(sub.minLength) ? Number.MIN_SAFE_INTEGER : sub.minLength) : sub.minimum,
904
- max: isNaN(sub.maximum) ? (isNaN(sub.maxLength) ? Number.MAX_SAFE_INTEGER : sub.maxLength) : sub.maximum
903
+ min: isNaN(sub.minimum) ? Number.MIN_SAFE_INTEGER : sub.minimum,
904
+ max: isNaN(sub.maximum) ? Number.MAX_SAFE_INTEGER : sub.maximum,
905
+ minLength: isNaN(sub.minLength) ? Number.MIN_SAFE_INTEGER : sub.minLength,
906
+ maxLength: isNaN(sub.maxLength) ? Number.MAX_SAFE_INTEGER : sub.maxLength,
905
907
  });
906
908
  };
907
909
  DynamicFormService.prototype.getFormTextareaConfig = function (property, schema) {