paygate-checkout-sdk 0.0.2 → 0.0.4
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.esm.jsx +7 -1
- package/dist/index.esm.jsx.map +1 -1
- package/dist/index.iife.js +798 -0
- package/dist/index.iife.js.map +1 -0
- package/dist/index.iife.jsx +1 -1
- package/dist/index.iife.jsx.map +1 -1
- package/dist/index.jsx +7 -1
- package/dist/index.jsx.map +1 -1
- package/package.json +4 -4
package/dist/index.jsx
CHANGED
|
@@ -7305,9 +7305,15 @@ const setup = (config) => {
|
|
|
7305
7305
|
console.error(`Paygate SDK: Element with id "${targetId}" not found.`);
|
|
7306
7306
|
}
|
|
7307
7307
|
};
|
|
7308
|
-
const
|
|
7308
|
+
const sdk = {
|
|
7309
7309
|
setup,
|
|
7310
7310
|
};
|
|
7311
|
+
const PaygateSdk = sdk;
|
|
7312
|
+
if (typeof window !== 'undefined') {
|
|
7313
|
+
window.PaygateCheckoutSDK = {
|
|
7314
|
+
PaygateSdk: sdk,
|
|
7315
|
+
};
|
|
7316
|
+
}
|
|
7311
7317
|
|
|
7312
7318
|
exports.PaygateSdk = PaygateSdk;
|
|
7313
7319
|
//# sourceMappingURL=index.jsx.map
|