@stemy/ngx-dynamic-form 13.2.1 → 13.2.2

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.
@@ -722,6 +722,9 @@ class DynamicFormService extends DynamicFormService$1 {
722
722
  getFormInputConfig(property, schema) {
723
723
  let inputType = StringUtils.has(property.id, "password", "Password") ? "password" : (property.format || property.items?.type || property.type);
724
724
  switch (inputType) {
725
+ case "string":
726
+ inputType = "text";
727
+ break;
725
728
  case "boolean":
726
729
  inputType = "checkbox";
727
730
  break;