@stemy/ngx-dynamic-form 19.9.29 → 19.9.30

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.
@@ -459,11 +459,11 @@ function enumValidation($enum) {
459
459
  }, "enum");
460
460
  }
461
461
  function setFieldMinDate(field, min, setValue = true) {
462
- setFieldDefault(field, min);
463
462
  setFieldProp(field, "min", min);
464
463
  addFieldValidators(field, [minValueValidation()]);
465
464
  if (!setValue)
466
465
  return;
466
+ setFieldDefault(field, min);
467
467
  setFieldValue(field, min);
468
468
  }
469
469