ps-toolkit-ui 1.6.48 → 1.6.49

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.
@@ -1883,7 +1883,7 @@
1883
1883
  exports.InputType.NationalCode, exports.InputType.Sheba, exports.InputType.PostalCode, exports.InputType.Date, exports.InputType.Time, exports.InputType.BillNumber].includes(type) ? ' ltr' : '');
1884
1884
  this.type = type;
1885
1885
  this.value = value;
1886
- this.default = value == null ? null : (typeof value === 'number' ? _.cloneDeep(value) : HelperClass.clone(value));
1886
+ this.default = value == null ? null : (typeof value === 'number' || typeof value === 'string' ? _.cloneDeep(value) : HelperClass.clone(value));
1887
1887
  this.baseRequired = required;
1888
1888
  this.required = required;
1889
1889
  this.inEditRequired = required;