@depay/widgets 10.2.6 → 10.2.7
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/esm/index.bundle.js +1 -1
- package/dist/esm/index.js +6 -2
- package/dist/umd/index.bundle.js +1 -1
- package/dist/umd/index.js +6 -2
- package/package.json +1 -1
package/dist/umd/index.js
CHANGED
|
@@ -22435,7 +22435,9 @@
|
|
|
22435
22435
|
}
|
|
22436
22436
|
setPaymentState('success');
|
|
22437
22437
|
if (succeeded) {
|
|
22438
|
-
|
|
22438
|
+
setTimeout(function () {
|
|
22439
|
+
return succeeded(transaction);
|
|
22440
|
+
}, 200);
|
|
22439
22441
|
}
|
|
22440
22442
|
};
|
|
22441
22443
|
var paymentFailed = function paymentFailed(transaction, error) {
|
|
@@ -23989,7 +23991,9 @@
|
|
|
23989
23991
|
}
|
|
23990
23992
|
var success = item.message.status == 'success';
|
|
23991
23993
|
if (validated) {
|
|
23992
|
-
|
|
23994
|
+
setTimeout(function () {
|
|
23995
|
+
return validated(success);
|
|
23996
|
+
}, 200);
|
|
23993
23997
|
}
|
|
23994
23998
|
if (item.message.release) {
|
|
23995
23999
|
socket.close(1000);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@depay/widgets",
|
|
3
3
|
"moduleName": "DePayWidgets",
|
|
4
|
-
"version": "10.2.
|
|
4
|
+
"version": "10.2.7",
|
|
5
5
|
"description": "Web3 Payments with any token. DePay simplifies and improves Web3 Payments with the power of DeFi. Accept any token with on-the-fly conversion.",
|
|
6
6
|
"main": "./dist/umd/index.js",
|
|
7
7
|
"module": "./dist/esm/index.js",
|