@vendasta/forms_microservice 0.14.1 → 0.15.0

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.
@@ -269,6 +269,9 @@ class FormConfigField {
269
269
  if (typeof this.placeholder !== 'undefined') {
270
270
  toReturn['placeholder'] = this.placeholder;
271
271
  }
272
+ if (typeof this.defaultPhoneIsoCountryCode !== 'undefined') {
273
+ toReturn['defaultPhoneIsoCountryCode'] = this.defaultPhoneIsoCountryCode;
274
+ }
272
275
  return toReturn;
273
276
  }
274
277
  }