@funkit/connect 9.3.0 → 9.3.1

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.
@@ -1,3 +1,5 @@
1
1
  export declare const BORDER_RADIUS = "dropdown";
2
+ export declare const DROPDOWN_ANIMATION_DURATION = 150;
3
+ export declare const dropdownBoxStyles: string;
2
4
  export declare const scrollableDropdownStyles: string;
3
5
  export declare const baseDropdownItemWrapperStyles: string;
@@ -54,6 +54,16 @@ export declare function AddPaymentMethodItem({ paymentMethod, isClickable, isAct
54
54
  export declare function PayPalPaymentMethodItem({ isActive, isClickable, onClick, isLoading, }: BasePaymentMethodItemProps & {
55
55
  isLoading: boolean;
56
56
  }): React.JSX.Element;
57
+ export declare function PaymentMethodDisabledBadge(props: {
58
+ reason: 'comingSoon' | 'geoblocked' | 'lowBalance';
59
+ } | {
60
+ reason: 'insufficientBalance';
61
+ /** Minimum amount for 'insufficientBalance' reason only */
62
+ minAmount: {
63
+ amount: number;
64
+ currency: string;
65
+ };
66
+ }): React.JSX.Element | null;
57
67
  /**
58
68
  * Payment method item for a Form of Payment from the fops API (Swapped providers)
59
69
  */