@asdp/ferryui 0.1.22-dev.8641 → 0.1.22-dev.8649

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.
package/dist/index.d.mts CHANGED
@@ -2947,6 +2947,7 @@ interface PaymentOption {
2947
2947
  label: string;
2948
2948
  value: string;
2949
2949
  image: string;
2950
+ disabled?: boolean;
2950
2951
  }
2951
2952
  interface PaymentMethodCategory {
2952
2953
  title: string;
package/dist/index.d.ts CHANGED
@@ -2947,6 +2947,7 @@ interface PaymentOption {
2947
2947
  label: string;
2948
2948
  value: string;
2949
2949
  image: string;
2950
+ disabled?: boolean;
2950
2951
  }
2951
2952
  interface PaymentMethodCategory {
2952
2953
  title: string;
package/dist/index.js CHANGED
@@ -10615,7 +10615,8 @@ var CardPaymentMethodList = ({
10615
10615
  checked: selectedValue === option.value,
10616
10616
  onChange: () => onSelect(option.value),
10617
10617
  value: option.value,
10618
- name: "payment-method"
10618
+ name: "payment-method",
10619
+ disabled: option.disabled
10619
10620
  }
10620
10621
  )
10621
10622
  ]