@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.
- package/CHANGELOG.md +7 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.js.map +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-button.umd.js.map +1 -1
- package/dist/checkout-sdk.d.ts +15 -18
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +2 -2
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/docs/interfaces/paypalfieldsstyleoptions.md +6 -20
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -5734,28 +5734,25 @@ declare interface PaypalExpressPaymentInitializeOptions {
|
|
|
5734
5734
|
}
|
|
5735
5735
|
|
|
5736
5736
|
declare interface PaypalFieldsStyleOptions {
|
|
5737
|
-
|
|
5738
|
-
backgroundColor?: string;
|
|
5739
|
-
color?: string;
|
|
5740
|
-
fontSize?: string;
|
|
5737
|
+
variables?: {
|
|
5741
5738
|
fontFamily?: string;
|
|
5742
|
-
|
|
5743
|
-
|
|
5744
|
-
|
|
5745
|
-
|
|
5746
|
-
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
|
|
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
|
-
|
|
5751
|
+
borderFocusColor?: string;
|
|
5752
|
+
spacingUnit?: string;
|
|
5753
5753
|
};
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
};
|
|
5757
|
-
active?: {
|
|
5758
|
-
color?: string;
|
|
5754
|
+
rules?: {
|
|
5755
|
+
[key: string]: any;
|
|
5759
5756
|
};
|
|
5760
5757
|
}
|
|
5761
5758
|
|