@stemy/ngx-dynamic-form 13.3.6 → 13.3.7

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.
@@ -869,7 +869,10 @@ class DynamicFormService extends DynamicFormService$1 {
869
869
  rows: property.rows || 10,
870
870
  wrap: property.wrap || false,
871
871
  autoComplete: property.autoComplete || "off",
872
- multiple: property.type == "array"
872
+ multiple: property.type == "array",
873
+ minLength: isNaN(property.minLength) ? 0 : property.minLength,
874
+ maxLength: isNaN(property.maxLength) ? MAX_INPUT_NUM : property.maxLength,
875
+ placeholder: property.placeholder || ""
873
876
  });
874
877
  }
875
878
  getFormDatepickerConfig(property, schema) {