@bigcommerce/checkout-sdk 1.218.0 → 1.219.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.
@@ -5734,28 +5734,25 @@ declare interface PaypalExpressPaymentInitializeOptions {
5734
5734
  }
5735
5735
 
5736
5736
  declare interface PaypalFieldsStyleOptions {
5737
- base?: {
5738
- backgroundColor?: string;
5739
- color?: string;
5740
- fontSize?: string;
5737
+ variables?: {
5741
5738
  fontFamily?: string;
5742
- lineHeight?: string;
5743
- letterSpacing?: string;
5744
- };
5745
- input?: {
5746
- backgroundColor?: string;
5747
- fontSize?: string;
5748
- color?: string;
5749
- borderColor?: string;
5739
+ fontSizeBase?: string;
5740
+ fontSizeSm?: string;
5741
+ fontSizeM?: string;
5742
+ fontSizeLg?: string;
5743
+ textColor?: string;
5744
+ colorTextPlaceholder?: string;
5745
+ colorBackground?: string;
5746
+ colorInfo?: string;
5747
+ colorDanger?: string;
5750
5748
  borderRadius?: string;
5749
+ borderColor?: string;
5751
5750
  borderWidth?: string;
5752
- padding?: string;
5751
+ borderFocusColor?: string;
5752
+ spacingUnit?: string;
5753
5753
  };
5754
- invalid?: {
5755
- color?: string;
5756
- };
5757
- active?: {
5758
- color?: string;
5754
+ rules?: {
5755
+ [key: string]: any;
5759
5756
  };
5760
5757
  }
5761
5758