tf-checkout-react 1.3.50 → 1.3.51

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.
@@ -2575,7 +2575,7 @@ var getFieldComponent = function getFieldComponent(element) {
2575
2575
  var type = _get(element, 'type', 'text');
2576
2576
  var fieldComponentConfigs = {
2577
2577
  checkbox: CheckboxField,
2578
- select: NativeSelectField,
2578
+ select: CustomField,
2579
2579
  select_multi: SelectField,
2580
2580
  phone: PhoneNumberField,
2581
2581
  date: DatePickerField,
@@ -3375,7 +3375,11 @@ var BillingInfoContainer = /*#__PURE__*/React__default.memo(function (_ref4) {
3375
3375
  value: item.id,
3376
3376
  label: item.name
3377
3377
  };
3378
- }) : element.name === 'state' ? states : element.selectOptions || [],
3378
+ }) : element.name === 'state' ? [{
3379
+ label: element.label,
3380
+ value: '',
3381
+ disabled: true
3382
+ }].concat(states) : element.selectOptions || [],
3379
3383
  theme: theme,
3380
3384
  defaultCountry: defaultCountry || element.defaultCountry,
3381
3385
  dateFormat: element.format,