@bigcommerce/checkout-sdk 1.237.3 → 1.238.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.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +6 -0
- 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/stripeupepaymentinitializeoptions.md +9 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -6701,6 +6701,12 @@ declare interface StripeUPEPaymentInitializeOptions {
|
|
|
6701
6701
|
* The location to insert the credit card number form field.
|
|
6702
6702
|
*/
|
|
6703
6703
|
containerId: string;
|
|
6704
|
+
/**
|
|
6705
|
+
* Checkout styles from store theme
|
|
6706
|
+
*/
|
|
6707
|
+
style?: {
|
|
6708
|
+
[key: string]: string;
|
|
6709
|
+
};
|
|
6704
6710
|
}
|
|
6705
6711
|
|
|
6706
6712
|
/**
|