@everymatrix/cashier-method-details 1.54.0 → 1.54.4
Sign up to get free protection for your applications and to get access to all the features.
- package/components/CashierConfirmModal-agjo7360.js +992 -0
- package/components/{CashierError-DsrAZ7IP.js → CashierError-MwSUmltg.js} +16 -16
- package/components/{CashierHeader-BQ4XCSyP.js → CashierHeader-t-mKIY-_.js} +2 -2
- package/components/{CashierIframeRedirect-BURzxRqb.js → CashierIframeRedirect-OvWRLGOx.js} +6 -6
- package/components/{CashierMethodDetails-DH9kVsIF.js → CashierMethodDetails-BcnSmVkq.js} +869 -887
- package/components/{CashierModal-DcNl8u1M.js → CashierModal-ClIRlRW4.js} +1 -1
- package/components/{CashierNotifications-BOc2VfCm.js → CashierNotifications-Ip7CfQWs.js} +1 -1
- package/components/{CashierReceiptPage-B-bW-hmW.js → CashierReceiptPage-CIlcvMvB.js} +108 -109
- package/components/{CashierSpinner-BhoNpvFz.js → CashierSpinner-DjTQcN-x.js} +1 -1
- package/esnext/cashier-method-details.js +14 -0
- package/package.json +10 -16
- package/components/CashierConfirmModal-BCFrtc41.js +0 -1029
- package/components/CashierConfirmModal-BPOCBgWd.cjs +0 -4
- package/components/CashierError-DJht4oPb.cjs +0 -5
- package/components/CashierHeader-GmZvyCGt.cjs +0 -1
- package/components/CashierIframeRedirect-DmTcvobN.cjs +0 -1
- package/components/CashierMethodDetails-Dnhdtcto.cjs +0 -18
- package/components/CashierModal-D7FMZ2Gy.cjs +0 -1
- package/components/CashierNotifications-a_yYbXof.cjs +0 -1
- package/components/CashierReceiptPage-RF2yM8w0.cjs +0 -1
- package/components/CashierSpinner-spPx3NOj.cjs +0 -1
- package/es2015/cashier-method-details.cjs +0 -1
- package/es2015/cashier-method-details.js +0 -16
@@ -1,4 +1,4 @@
|
|
1
|
-
import { S as y, b as g, f as d, c as m, a as p, d as k, g as C, j as x, k as S, n as c, v as _, C as v } from "./CashierConfirmModal-
|
1
|
+
import { S as y, b as g, f as d, c as m, a as p, d as k, g as C, j as x, k as S, n as c, v as _, C as v } from "./CashierConfirmModal-agjo7360.js";
|
2
2
|
function b(n) {
|
3
3
|
k(n, "svelte-fidj5e", ".CashierSpinner{display:block;width:80px;height:80px;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:1}.CashierSpinner .spinner{animation:rotate 2s linear infinite;transform-origin:center center}.CashierSpinner .spinner .path{stroke-dasharray:1, 200;stroke-dashoffset:0;animation:dash 1.5s ease-in-out infinite;stroke-linecap:round;stroke:var(--emw--color-primary, #7EC51E)}@keyframes rotate{100%{transform:rotate(360deg)}}@keyframes dash{0%{stroke-dasharray:1, 200;stroke-dashoffset:0}50%{stroke-dasharray:89, 200;stroke-dashoffset:-35px}100%{stroke-dasharray:89, 200;stroke-dashoffset:-124px}}");
|
4
4
|
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { C as n } from "../components/CashierMethodDetails-BcnSmVkq.js";
|
2
|
+
function i(t) {
|
3
|
+
return function(...s) {
|
4
|
+
try {
|
5
|
+
return t.apply(this, s);
|
6
|
+
} catch (e) {
|
7
|
+
if (e instanceof DOMException && e.message.includes("has already been used with this registry") || e.message.includes("Cannot define multiple custom elements with the same tag name"))
|
8
|
+
return !1;
|
9
|
+
throw e;
|
10
|
+
}
|
11
|
+
};
|
12
|
+
}
|
13
|
+
customElements.define = i(customElements.define);
|
14
|
+
!customElements.get("cashier-method-details") && customElements.define("cashier-method-details", n.element);
|
package/package.json
CHANGED
@@ -1,30 +1,24 @@
|
|
1
1
|
{
|
2
2
|
"name": "@everymatrix/cashier-method-details",
|
3
|
-
"version": "1.54.
|
3
|
+
"version": "1.54.4",
|
4
4
|
"type": "module",
|
5
|
-
"main": "
|
6
|
-
"module": "
|
5
|
+
"main": "esnext/cashier-method-details.js",
|
6
|
+
"module": "esnext/cashier-method-details.js",
|
7
7
|
"exports": {
|
8
8
|
".": {
|
9
|
-
"import": "./
|
10
|
-
"require": "./es2015/cashier-method-details.cjs"
|
9
|
+
"import": "./esnext/cashier-method-details.js"
|
11
10
|
},
|
12
|
-
"./es2015/cashier-method-details.cjs": "./es2015/cashier-method-details.cjs"
|
11
|
+
"./es2015/cashier-method-details.cjs": "./es2015/cashier-method-details.cjs",
|
12
|
+
"./es2015/cashier-method-details.js": "./es2015/cashier-method-details.js"
|
13
13
|
},
|
14
14
|
"files": [
|
15
|
+
"components/",
|
15
16
|
"es2015/",
|
16
|
-
"
|
17
|
-
"
|
17
|
+
"stencil",
|
18
|
+
"angular",
|
19
|
+
"esnext/"
|
18
20
|
],
|
19
21
|
"publishConfig": {
|
20
22
|
"access": "public"
|
21
|
-
},
|
22
|
-
"dependencies": {
|
23
|
-
"@everymatrix/cashier-iframe-redirect": "1.45.7",
|
24
|
-
"@everymatrix/cashier-receipt-page": "1.45.7",
|
25
|
-
"@everymatrix/cashier-confirm-modal": "1.45.7",
|
26
|
-
"@everymatrix/cashier-notifications": "1.45.7",
|
27
|
-
"@everymatrix/cashier-error": "1.45.7",
|
28
|
-
"@everymatrix/cashier-modal": "1.45.7"
|
29
23
|
}
|
30
24
|
}
|