@coinbase/cdp-react 0.0.86 → 0.0.87
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/assets/CDPReactProvider.css +1 -1
- package/dist/assets/EnrollMfaFlow.css +1 -1
- package/dist/assets/VerifyMfaFlow.css +1 -1
- package/dist/assets/VerifyMfaFlowBackButton.css +1 -0
- package/dist/assets/VerifyMfaInline.css +1 -1
- package/dist/assets/VerifyMfaItem.css +1 -0
- package/dist/assets/VerifyMfaItems.css +1 -0
- package/dist/assets/sms.css +1 -0
- package/dist/chunks/CDPReactProvider.C38bKQ2x.js +337 -0
- package/dist/chunks/{LinkAuthFlow.BaUSMzGH.js → LinkAuthFlow.CLubKoY0.js} +13 -13
- package/dist/chunks/{index.C_DV0Ud7.js → index.BN39qScu.js} +1 -1
- package/dist/chunks/index.BX4k-ruQ.js +12 -0
- package/dist/chunks/index.Bgx0-QLY.js +12 -0
- package/dist/components/CDPReactProvider/index.js +1 -1
- package/dist/components/EnrollMfa/EnrollMfaDescription.js +4 -3
- package/dist/components/EnrollMfa/EnrollMfaFlow.js +27 -26
- package/dist/components/EnrollMfa/EnrollMfaFlowBackButton.js +7 -6
- package/dist/components/EnrollMfa/EnrollMfaFlowProvider.d.ts +1 -1
- package/dist/components/EnrollMfa/EnrollMfaFlowProvider.js +5 -4
- package/dist/components/EnrollMfa/EnrollMfaImage.js +7 -6
- package/dist/components/EnrollMfa/EnrollMfaItem.js +7 -6
- package/dist/components/EnrollMfa/EnrollMfaItems.js +28 -25
- package/dist/components/EnrollMfa/EnrollMfaProvider.js +22 -17
- package/dist/components/EnrollMfa/EnrollMfaTitle.js +8 -7
- package/dist/components/EnrollMfa/index.js +134 -128
- package/dist/components/EnrollMfa/methods/sms.d.ts +6 -0
- package/dist/components/EnrollMfa/methods/sms.js +148 -0
- package/dist/components/EnrollMfa/methods/totp.js +24 -19
- package/dist/components/EnrollMfa/types.d.ts +17 -5
- package/dist/components/EnrollMfa/types.js +1 -0
- package/dist/components/EnrollMfa/useEnrollMfaReducer.js +51 -38
- package/dist/components/EnrollMfaModal/index.js +1 -1
- package/dist/components/ExportWallet/index.js +109 -101
- package/dist/components/ExportWalletModal/index.js +1 -1
- package/dist/components/Fund/index.js +1 -1
- package/dist/components/FundModal/index.js +1 -1
- package/dist/components/LinkAuth/LinkAuthFlow.js +2 -2
- package/dist/components/LinkAuth/LinkAuthFlowBackButton.js +2 -2
- package/dist/components/LinkAuth/LinkAuthFlowProvider.js +2 -2
- package/dist/components/LinkAuth/LinkAuthItem.js +1 -1
- package/dist/components/LinkAuth/LinkAuthItems.js +1 -1
- package/dist/components/LinkAuth/LinkAuthProvider.js +1 -1
- package/dist/components/LinkAuth/index.js +3 -3
- package/dist/components/LinkAuth/types.js +1 -1
- package/dist/components/LinkAuth/utils.js +1 -1
- package/dist/components/LinkAuthModal/index.js +2 -2
- package/dist/components/OAuthStatusModal/index.js +1 -1
- package/dist/components/SignIn/SignInAuthMethodButtons.js +1 -1
- package/dist/components/SignIn/SignInBackButton.js +12 -12
- package/dist/components/SignIn/SignInDescription.js +2 -2
- package/dist/components/SignIn/SignInForm.js +2 -2
- package/dist/components/SignIn/SignInImage.js +1 -1
- package/dist/components/SignIn/SignInProvider.js +1 -1
- package/dist/components/SignIn/SignInTitle.js +2 -2
- package/dist/components/SignIn/flows/SignInWithEmail.js +1 -1
- package/dist/components/SignIn/flows/SignInWithOAuth.js +1 -1
- package/dist/components/SignIn/flows/SignInWithSms.js +74 -84
- package/dist/components/SignIn/index.js +1 -1
- package/dist/components/SignIn/types.d.ts +2 -0
- package/dist/components/SignIn/types.js +1 -1
- package/dist/components/SignIn/useSignInReducer.js +20 -6
- package/dist/components/SignInModal/index.js +1 -1
- package/dist/components/VerifyMfa/VerifyMfaDescription.d.ts +1 -1
- package/dist/components/VerifyMfa/VerifyMfaDescription.js +24 -14
- package/dist/components/VerifyMfa/VerifyMfaFlow.d.ts +5 -4
- package/dist/components/VerifyMfa/VerifyMfaFlow.js +52 -13
- package/dist/components/VerifyMfa/VerifyMfaFlowBackButton.d.ts +9 -0
- package/dist/components/VerifyMfa/VerifyMfaFlowBackButton.js +40 -0
- package/dist/components/VerifyMfa/VerifyMfaFlowProvider.d.ts +23 -0
- package/dist/components/VerifyMfa/VerifyMfaFlowProvider.js +37 -0
- package/dist/components/VerifyMfa/VerifyMfaImage.d.ts +1 -1
- package/dist/components/VerifyMfa/VerifyMfaImage.js +25 -13
- package/dist/components/VerifyMfa/VerifyMfaItem.d.ts +10 -0
- package/dist/components/VerifyMfa/VerifyMfaItem.js +27 -0
- package/dist/components/VerifyMfa/VerifyMfaItems.d.ts +9 -0
- package/dist/components/VerifyMfa/VerifyMfaItems.js +31 -0
- package/dist/components/VerifyMfa/VerifyMfaProvider.js +27 -14
- package/dist/components/VerifyMfa/VerifyMfaTitle.d.ts +1 -1
- package/dist/components/VerifyMfa/VerifyMfaTitle.js +23 -13
- package/dist/components/VerifyMfa/index.d.ts +6 -2
- package/dist/components/VerifyMfa/index.js +23 -14
- package/dist/components/VerifyMfa/methods/sms.d.ts +6 -0
- package/dist/components/VerifyMfa/methods/sms.js +90 -0
- package/dist/components/VerifyMfa/methods/totp.js +40 -39
- package/dist/components/VerifyMfa/types.d.ts +21 -2
- package/dist/components/VerifyMfa/types.js +1 -0
- package/dist/components/VerifyMfa/useVerifyMfaReducer.d.ts +2 -1
- package/dist/components/VerifyMfa/useVerifyMfaReducer.js +29 -4
- package/dist/components/VerifyMfaInline/index.d.ts +1 -1
- package/dist/components/VerifyMfaInline/index.js +133 -116
- package/dist/components/VerifyMfaModal/index.js +7 -5
- package/dist/components/ui/SwitchTransition/index.js +3 -3
- package/dist/hooks/usePhoneNumberState.d.ts +15 -0
- package/dist/hooks/usePhoneNumberState.js +39 -0
- package/dist/hooks/useTransitionMap.js +24 -22
- package/dist/hooks/useVerifyMfaModal.js +1 -1
- package/dist/index.js +59 -51
- package/dist/utils/transition.d.ts +3 -3
- package/dist/utils/transition.js +21 -20
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +6 -6
- package/dist/chunks/CDPReactProvider.CIQm4C4z.js +0 -299
- package/dist/chunks/index.CKQKBoX2.js +0 -9
- package/dist/chunks/index.Dp-lIxM1.js +0 -9
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { u as S, A as
|
|
2
|
-
import { createContext as A, useContext as k, useMemo as h, useState as
|
|
3
|
-
import { VERSION as
|
|
1
|
+
import { u as S, A as D } from "../../chunks/useSendComponentCallOnce.BHZMuo6E.js";
|
|
2
|
+
import { createContext as A, useContext as k, useMemo as h, useState as L, useCallback as U } from "react";
|
|
3
|
+
import { VERSION as q } from "../../version.js";
|
|
4
4
|
import "../AuthButton/index.js";
|
|
5
|
-
import { u as b } from "../../chunks/CDPReactProvider.
|
|
6
|
-
import { CopyAddress as
|
|
7
|
-
import { CopyEvmKeyButton as
|
|
8
|
-
import { CopySolanaKeyButton as
|
|
5
|
+
import { u as b } from "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
6
|
+
import { CopyAddress as H } from "../CopyAddress/index.js";
|
|
7
|
+
import { CopyEvmKeyButton as J } from "../CopyEvmKeyButton/index.js";
|
|
8
|
+
import { CopySolanaKeyButton as X } from "../CopySolanaKeyButton/index.js";
|
|
9
9
|
import "../EnrollMfa/index.js";
|
|
10
10
|
import "../EnrollMfaModal/index.js";
|
|
11
|
-
import { jsx as t, jsxs as
|
|
12
|
-
import { useCurrentUser as
|
|
11
|
+
import { jsx as t, jsxs as d, Fragment as y } from "react/jsx-runtime";
|
|
12
|
+
import { useCurrentUser as Z } from "@coinbase/cdp-hooks";
|
|
13
13
|
import { c as m } from "../../chunks/lite.1fxw3LjI.js";
|
|
14
14
|
import { Banner as w } from "../ui/Banner/index.js";
|
|
15
15
|
import { CoinbaseFooter as C } from "../ui/CoinbaseFooter/index.js";
|
|
16
|
-
import { VerifyMfaInline as F,
|
|
17
|
-
import { Button as
|
|
18
|
-
import { Modal as
|
|
19
|
-
import { IconXMark as
|
|
16
|
+
import { VerifyMfaInline as F, VerifyMfaInlineBackButton as I, VerifyMfaInlineFlow as R, useVerifyMfaInlineContext as $ } from "../VerifyMfaInline/index.js";
|
|
17
|
+
import { Button as T } from "../ui/Button/index.js";
|
|
18
|
+
import { Modal as G, ModalClose as Q, ModalContent as tt, ModalTitle as ot, ModalTrigger as et } from "../ui/Modal/index.js";
|
|
19
|
+
import { IconXMark as rt } from "../../icons/IconXMark.js";
|
|
20
20
|
import { childrenHasComponent as g } from "../../utils/childrenHasComponent.js";
|
|
21
21
|
import "../Fund/index.js";
|
|
22
22
|
import "../FundModal/index.js";
|
|
@@ -71,7 +71,7 @@ import "../EnrollMfa/EnrollMfaFlowProvider.js";
|
|
|
71
71
|
import "../Fund/FundForm.js";
|
|
72
72
|
import "../Fund/FundTitle.js";
|
|
73
73
|
import "../Fund/FundProvider.js";
|
|
74
|
-
import "../../chunks/LinkAuthFlow.
|
|
74
|
+
import "../../chunks/LinkAuthFlow.CLubKoY0.js";
|
|
75
75
|
import "../LinkAuth/LinkAuthFlowBackButton.js";
|
|
76
76
|
import "../LinkAuth/LinkAuthItem.js";
|
|
77
77
|
import "../LinkAuth/LinkAuthItems.js";
|
|
@@ -86,27 +86,31 @@ import "../SignIn/SignInImage.js";
|
|
|
86
86
|
import "../SignIn/SignInTitle.js";
|
|
87
87
|
import "../SignIn/SignInProvider.js";
|
|
88
88
|
import "../VerifyMfa/VerifyMfaDescription.js";
|
|
89
|
-
import "../VerifyMfa/VerifyMfaFooter.js";
|
|
90
89
|
import "../VerifyMfa/VerifyMfaFlow.js";
|
|
90
|
+
import "../VerifyMfa/VerifyMfaFlowBackButton.js";
|
|
91
|
+
import "../VerifyMfa/VerifyMfaFooter.js";
|
|
91
92
|
import "../VerifyMfa/VerifyMfaImage.js";
|
|
93
|
+
import "../VerifyMfa/VerifyMfaItem.js";
|
|
94
|
+
import "../VerifyMfa/VerifyMfaItems.js";
|
|
92
95
|
import "../VerifyMfa/VerifyMfaTitle.js";
|
|
93
96
|
import "../VerifyMfa/VerifyMfaProvider.js";
|
|
94
|
-
import
|
|
97
|
+
import "../VerifyMfa/VerifyMfaFlowProvider.js";
|
|
98
|
+
import '../../assets/ExportWallet.css';const at = "ExportWallet-module__footer___NvrFY", E = {
|
|
95
99
|
"export-wallet": "ExportWallet-module__export-wallet___EyZys",
|
|
96
100
|
"no-footer": "ExportWallet-module__no-footer___fzl3R",
|
|
97
101
|
"flex-container": "ExportWallet-module__flex-container___-vm5t",
|
|
98
102
|
"export-wallet-title": "ExportWallet-module__export-wallet-title___MuI09",
|
|
99
|
-
footer:
|
|
100
|
-
},
|
|
103
|
+
footer: at
|
|
104
|
+
}, P = A({
|
|
101
105
|
address: "",
|
|
102
106
|
isSessionExpired: !1,
|
|
103
107
|
type: "evm-eoa"
|
|
104
108
|
}), W = () => {
|
|
105
|
-
const o = k(
|
|
109
|
+
const o = k(P);
|
|
106
110
|
if (!o)
|
|
107
111
|
throw new Error("useExportWalletContext must be used within a ExportWalletProvider");
|
|
108
112
|
return o;
|
|
109
|
-
},
|
|
113
|
+
}, lt = ({
|
|
110
114
|
address: o,
|
|
111
115
|
children: e,
|
|
112
116
|
onIframeError: r,
|
|
@@ -114,19 +118,19 @@ import '../../assets/ExportWallet.css';const rt = "ExportWallet-module__footer__
|
|
|
114
118
|
onIframeSessionExpired: n,
|
|
115
119
|
onCopySuccess: s
|
|
116
120
|
}) => {
|
|
117
|
-
const { currentUser: i } =
|
|
118
|
-
() => !!i?.solanaAccountObjects?.find((
|
|
121
|
+
const { currentUser: i } = Z(), c = h(
|
|
122
|
+
() => !!i?.solanaAccountObjects?.find((M) => M.address === o),
|
|
119
123
|
[i?.solanaAccountObjects, o]
|
|
120
|
-
),
|
|
121
|
-
() => !!i?.evmSmartAccountObjects?.find((
|
|
124
|
+
), u = h(
|
|
125
|
+
() => !!i?.evmSmartAccountObjects?.find((M) => M.address === o),
|
|
122
126
|
[i?.evmSmartAccountObjects, o]
|
|
123
|
-
),
|
|
127
|
+
), _ = c ? "solana" : u ? "evm-smart" : "evm-eoa", [p, x] = L(!1), f = U(() => {
|
|
124
128
|
x(!0), n?.();
|
|
125
|
-
}, [n]),
|
|
129
|
+
}, [n]), z = h(
|
|
126
130
|
() => ({
|
|
127
131
|
address: o,
|
|
128
132
|
isSessionExpired: p,
|
|
129
|
-
type:
|
|
133
|
+
type: _,
|
|
130
134
|
onIframeError: r,
|
|
131
135
|
onIframeReady: a,
|
|
132
136
|
onIframeSessionExpired: f,
|
|
@@ -135,15 +139,15 @@ import '../../assets/ExportWallet.css';const rt = "ExportWallet-module__footer__
|
|
|
135
139
|
[
|
|
136
140
|
o,
|
|
137
141
|
p,
|
|
138
|
-
|
|
142
|
+
_,
|
|
139
143
|
f,
|
|
140
144
|
r,
|
|
141
145
|
a,
|
|
142
146
|
s
|
|
143
147
|
]
|
|
144
148
|
);
|
|
145
|
-
return /* @__PURE__ */ t(
|
|
146
|
-
},
|
|
149
|
+
return /* @__PURE__ */ t(P.Provider, { value: z, children: e });
|
|
150
|
+
}, nt = ({
|
|
147
151
|
children: o,
|
|
148
152
|
className: e = "",
|
|
149
153
|
as: r = "h2",
|
|
@@ -156,7 +160,7 @@ import '../../assets/ExportWallet.css';const rt = "ExportWallet-module__footer__
|
|
|
156
160
|
...a,
|
|
157
161
|
children: o || "Export your wallet"
|
|
158
162
|
}
|
|
159
|
-
),
|
|
163
|
+
), V = (o) => {
|
|
160
164
|
const { isSessionExpired: e, type: r } = W();
|
|
161
165
|
return e ? /* @__PURE__ */ t(w, { "data-part": "warning", variant: "warning", ...o, children: "Your export session has expired." }) : r === "evm-smart" ? /* @__PURE__ */ t(w, { "data-part": "warning", variant: "warning", ...o, children: "Cannot export a smart account's private key; only the owner's private key can be exported." }) : /* @__PURE__ */ t(w, { "data-part": "warning", variant: "warning", ...o, children: "Do not share your private key with anyone" });
|
|
162
166
|
}, j = ({
|
|
@@ -164,14 +168,14 @@ import '../../assets/ExportWallet.css';const rt = "ExportWallet-module__footer__
|
|
|
164
168
|
...e
|
|
165
169
|
}) => {
|
|
166
170
|
const { address: r } = W();
|
|
167
|
-
return /* @__PURE__ */ t(
|
|
168
|
-
},
|
|
171
|
+
return /* @__PURE__ */ t(H, { "data-part": "copy-address", address: r, label: o, ...e });
|
|
172
|
+
}, B = ({
|
|
169
173
|
fullWidth: o = !0,
|
|
170
174
|
...e
|
|
171
175
|
}) => {
|
|
172
176
|
const { address: r, type: a, onIframeError: n, onIframeReady: s, onIframeSessionExpired: i, onCopySuccess: c } = W();
|
|
173
177
|
return a === "solana" ? /* @__PURE__ */ t(
|
|
174
|
-
|
|
178
|
+
X,
|
|
175
179
|
{
|
|
176
180
|
fullWidth: o,
|
|
177
181
|
address: r,
|
|
@@ -182,7 +186,7 @@ import '../../assets/ExportWallet.css';const rt = "ExportWallet-module__footer__
|
|
|
182
186
|
...e
|
|
183
187
|
}
|
|
184
188
|
) : a === "evm-eoa" ? /* @__PURE__ */ t(
|
|
185
|
-
|
|
189
|
+
J,
|
|
186
190
|
{
|
|
187
191
|
fullWidth: o,
|
|
188
192
|
address: r,
|
|
@@ -193,16 +197,16 @@ import '../../assets/ExportWallet.css';const rt = "ExportWallet-module__footer__
|
|
|
193
197
|
...e
|
|
194
198
|
}
|
|
195
199
|
) : null;
|
|
196
|
-
},
|
|
200
|
+
}, it = (o) => /* @__PURE__ */ t(C, { "data-part": "coinbase-footer", ...o }), st = ({ children: o }) => {
|
|
197
201
|
const { showCoinbaseFooter: e } = b(), { type: r, isSessionExpired: a } = W();
|
|
198
|
-
return o && typeof o == "function" ? o({ type: r, isSessionExpired: a }) : o || /* @__PURE__ */
|
|
199
|
-
/* @__PURE__ */ t(
|
|
200
|
-
/* @__PURE__ */ t(
|
|
202
|
+
return o && typeof o == "function" ? o({ type: r, isSessionExpired: a }) : o || /* @__PURE__ */ d(y, { children: [
|
|
203
|
+
/* @__PURE__ */ t(nt, {}),
|
|
204
|
+
/* @__PURE__ */ t(V, {}),
|
|
201
205
|
/* @__PURE__ */ t(j, {}),
|
|
202
|
-
/* @__PURE__ */ t(
|
|
203
|
-
e && /* @__PURE__ */ t(
|
|
206
|
+
/* @__PURE__ */ t(B, {}),
|
|
207
|
+
e && /* @__PURE__ */ t(it, { className: E.footer })
|
|
204
208
|
] });
|
|
205
|
-
},
|
|
209
|
+
}, pt = ({
|
|
206
210
|
address: o,
|
|
207
211
|
children: e,
|
|
208
212
|
className: r = "",
|
|
@@ -211,18 +215,18 @@ import '../../assets/ExportWallet.css';const rt = "ExportWallet-module__footer__
|
|
|
211
215
|
onIframeSessionExpired: s,
|
|
212
216
|
onCopySuccess: i,
|
|
213
217
|
skipMfa: c = !1,
|
|
214
|
-
...
|
|
218
|
+
...u
|
|
215
219
|
}) => {
|
|
216
220
|
S("export_wallet");
|
|
217
|
-
const { showCoinbaseFooter:
|
|
218
|
-
|
|
221
|
+
const { showCoinbaseFooter: _ } = b(), p = /* @__PURE__ */ t(
|
|
222
|
+
lt,
|
|
219
223
|
{
|
|
220
224
|
address: o,
|
|
221
225
|
onIframeReady: n,
|
|
222
226
|
onCopySuccess: i,
|
|
223
227
|
onIframeError: a,
|
|
224
228
|
onIframeSessionExpired: s,
|
|
225
|
-
children: /* @__PURE__ */ t(
|
|
229
|
+
children: /* @__PURE__ */ t(st, { children: e })
|
|
226
230
|
}
|
|
227
231
|
);
|
|
228
232
|
return /* @__PURE__ */ t(
|
|
@@ -230,31 +234,34 @@ import '../../assets/ExportWallet.css';const rt = "ExportWallet-module__footer__
|
|
|
230
234
|
{
|
|
231
235
|
className: m(
|
|
232
236
|
E["export-wallet"],
|
|
233
|
-
!
|
|
237
|
+
!_ && E["no-footer"],
|
|
234
238
|
r
|
|
235
239
|
),
|
|
236
|
-
...
|
|
237
|
-
children: c ? p : /* @__PURE__ */
|
|
240
|
+
...u,
|
|
241
|
+
children: c ? p : /* @__PURE__ */ d(F, { verifyFirst: !0, children: [
|
|
242
|
+
/* @__PURE__ */ t(I, {}),
|
|
243
|
+
/* @__PURE__ */ t(R, { transition: "fade", children: /* @__PURE__ */ t("div", { className: m(E["flex-container"]), children: p }) })
|
|
244
|
+
] })
|
|
238
245
|
}
|
|
239
246
|
);
|
|
240
|
-
},
|
|
247
|
+
}, mt = "ExportWalletModal-module__wrapper___r1E1L", ct = "ExportWalletModal-module__trigger___zMk8N", dt = "ExportWalletModal-module__content___KzNol", ut = "ExportWalletModal-module__footer___byg1T", _t = "ExportWalletModal-module__modal___pX1AP", l = {
|
|
241
248
|
"export-wallet": "ExportWalletModal-module__export-wallet___--L56",
|
|
242
249
|
"in-mfa-flow": "ExportWalletModal-module__in-mfa-flow___9Fe8k",
|
|
243
|
-
wrapper:
|
|
250
|
+
wrapper: mt,
|
|
244
251
|
"no-footer": "ExportWalletModal-module__no-footer___J8uj2",
|
|
245
|
-
trigger:
|
|
252
|
+
trigger: ct,
|
|
246
253
|
"title-bar": "ExportWalletModal-module__title-bar___RTPZq",
|
|
247
254
|
"title-bar-space-bottom": "ExportWalletModal-module__title-bar-space-bottom___l-NvR",
|
|
248
255
|
"export-wallet-title": "ExportWalletModal-module__export-wallet-title___2k0L-",
|
|
249
|
-
content:
|
|
256
|
+
content: dt,
|
|
250
257
|
"close-button": "ExportWalletModal-module__close-button___ImsDR",
|
|
251
258
|
"close-icon": "ExportWalletModal-module__close-icon___iAfyT",
|
|
252
|
-
footer:
|
|
259
|
+
footer: ut,
|
|
253
260
|
"footer-space-top": "ExportWalletModal-module__footer-space-top___URl9q",
|
|
254
261
|
"visually-hidden": "ExportWalletModal-module__visually-hidden___JAcNA",
|
|
255
|
-
modal:
|
|
256
|
-
},
|
|
257
|
-
const o = k(
|
|
262
|
+
modal: _t
|
|
263
|
+
}, O = A(null), xt = () => {
|
|
264
|
+
const o = k(O);
|
|
258
265
|
if (!o)
|
|
259
266
|
throw new Error("useExportWalletModalContext must be used within a ExportWalletModal");
|
|
260
267
|
return o;
|
|
@@ -263,68 +270,69 @@ import '../../assets/ExportWallet.css';const rt = "ExportWallet-module__footer__
|
|
|
263
270
|
className: e = "",
|
|
264
271
|
label: r,
|
|
265
272
|
...a
|
|
266
|
-
}) => /* @__PURE__ */ t(
|
|
273
|
+
}) => /* @__PURE__ */ t(et, { asChild: !0, children: o || /* @__PURE__ */ t(T, { className: m(l.trigger, e), ...a, children: r || "Export wallet" }) }), K = ({
|
|
267
274
|
children: o = "Copy private key to export wallet",
|
|
268
275
|
as: e = "h2",
|
|
269
276
|
className: r = "",
|
|
270
277
|
...a
|
|
271
|
-
}) => /* @__PURE__ */ t(
|
|
272
|
-
|
|
278
|
+
}) => /* @__PURE__ */ t(ot, { asChild: !0, children: /* @__PURE__ */ t(e, { className: m(l["export-wallet-title"], r), ...a, children: o }) }), Y = ({ children: o }) => /* @__PURE__ */ t(Q, { asChild: !0, children: o || /* @__PURE__ */ t(
|
|
279
|
+
T,
|
|
273
280
|
{
|
|
274
281
|
"aria-label": "Close",
|
|
275
282
|
className: l["close-button"],
|
|
276
283
|
variant: "transparentSecondary",
|
|
277
|
-
children: /* @__PURE__ */ t(
|
|
284
|
+
children: /* @__PURE__ */ t(rt, { className: l["close-icon"] })
|
|
278
285
|
}
|
|
279
|
-
) }),
|
|
280
|
-
const { view: e } =
|
|
281
|
-
return /* @__PURE__ */
|
|
282
|
-
/* @__PURE__ */ t(
|
|
283
|
-
/* @__PURE__ */ t(K, {})
|
|
286
|
+
) }), ft = ({ children: o }) => {
|
|
287
|
+
const { view: e } = $();
|
|
288
|
+
return /* @__PURE__ */ d("div", { className: l["title-bar"], children: [
|
|
289
|
+
/* @__PURE__ */ t(I, {}),
|
|
290
|
+
/* @__PURE__ */ t(K, { className: m(e === "content" ? "" : l["visually-hidden"]), children: o }),
|
|
291
|
+
/* @__PURE__ */ t(Y, {})
|
|
284
292
|
] });
|
|
285
|
-
},
|
|
293
|
+
}, v = ({
|
|
286
294
|
children: o,
|
|
287
295
|
className: e = "",
|
|
288
296
|
title: r,
|
|
289
297
|
...a
|
|
290
298
|
}) => {
|
|
291
|
-
const { showCoinbaseFooter: n } = b(), { address: s, onIframeReady: i, onCopySuccess: c, onIframeError:
|
|
292
|
-
|
|
299
|
+
const { showCoinbaseFooter: n } = b(), { address: s, onIframeReady: i, onCopySuccess: c, onIframeError: u, onIframeSessionExpired: _, skipMfa: p } = xt(), x = /* @__PURE__ */ t(
|
|
300
|
+
pt,
|
|
293
301
|
{
|
|
294
302
|
address: s,
|
|
295
303
|
onIframeReady: i,
|
|
296
304
|
onCopySuccess: c,
|
|
297
|
-
onIframeError:
|
|
298
|
-
onIframeSessionExpired:
|
|
305
|
+
onIframeError: u,
|
|
306
|
+
onIframeSessionExpired: _,
|
|
299
307
|
className: m(l["export-wallet"], !p && l["in-mfa-flow"]),
|
|
300
308
|
skipMfa: !0,
|
|
301
|
-
children: o || (({ isSessionExpired: f }) => /* @__PURE__ */
|
|
302
|
-
p && /* @__PURE__ */
|
|
303
|
-
/* @__PURE__ */ t(
|
|
304
|
-
/* @__PURE__ */ t(
|
|
309
|
+
children: o || (({ isSessionExpired: f }) => /* @__PURE__ */ d(y, { children: [
|
|
310
|
+
p && /* @__PURE__ */ d("div", { className: m(l["title-bar"], l["title-bar-space-bottom"]), children: [
|
|
311
|
+
/* @__PURE__ */ t(K, {}),
|
|
312
|
+
/* @__PURE__ */ t(Y, {})
|
|
305
313
|
] }),
|
|
306
|
-
/* @__PURE__ */
|
|
307
|
-
f ? /* @__PURE__ */ t(w, { role: "alert", "data-part": "warning", variant: "warning", children: "Your export session has expired. Please close and reopen the modal to export again." }) : /* @__PURE__ */ t(
|
|
314
|
+
/* @__PURE__ */ d("div", { className: l.content, children: [
|
|
315
|
+
f ? /* @__PURE__ */ t(w, { role: "alert", "data-part": "warning", variant: "warning", children: "Your export session has expired. Please close and reopen the modal to export again." }) : /* @__PURE__ */ t(V, {}),
|
|
308
316
|
/* @__PURE__ */ t(j, {}),
|
|
309
|
-
/* @__PURE__ */ t(
|
|
317
|
+
/* @__PURE__ */ t(B, {}),
|
|
310
318
|
p && n && /* @__PURE__ */ t(C, { className: l.footer })
|
|
311
319
|
] })
|
|
312
320
|
] }))
|
|
313
321
|
}
|
|
314
322
|
);
|
|
315
|
-
return /* @__PURE__ */ t(
|
|
323
|
+
return /* @__PURE__ */ t(tt, { "aria-describedby": void 0, className: m(l.modal, e), ...a, children: p ? x : /* @__PURE__ */ d(
|
|
316
324
|
F,
|
|
317
325
|
{
|
|
318
326
|
className: m(l.wrapper, n ? "" : l["no-footer"]),
|
|
319
327
|
verifyFirst: !0,
|
|
320
328
|
children: [
|
|
321
|
-
/* @__PURE__ */ t(
|
|
322
|
-
/* @__PURE__ */ t(
|
|
329
|
+
/* @__PURE__ */ t(ft, { children: r }),
|
|
330
|
+
/* @__PURE__ */ t(R, { transition: "fade", children: x }),
|
|
323
331
|
n && /* @__PURE__ */ t(C, { className: m(l.footer, l["footer-space-top"]) })
|
|
324
332
|
]
|
|
325
333
|
}
|
|
326
334
|
) });
|
|
327
|
-
},
|
|
335
|
+
}, ie = ({
|
|
328
336
|
address: o,
|
|
329
337
|
children: e,
|
|
330
338
|
onIframeReady: r,
|
|
@@ -333,39 +341,39 @@ import '../../assets/ExportWallet.css';const rt = "ExportWallet-module__footer__
|
|
|
333
341
|
onIframeSessionExpired: s,
|
|
334
342
|
open: i,
|
|
335
343
|
setIsOpen: c,
|
|
336
|
-
skipMfa:
|
|
344
|
+
skipMfa: u = !1
|
|
337
345
|
}) => {
|
|
338
346
|
S("export_wallet_modal");
|
|
339
|
-
const
|
|
347
|
+
const _ = h(
|
|
340
348
|
() => ({
|
|
341
349
|
address: o,
|
|
342
350
|
onIframeReady: r,
|
|
343
351
|
onCopySuccess: a,
|
|
344
352
|
onIframeError: n,
|
|
345
353
|
onIframeSessionExpired: s,
|
|
346
|
-
skipMfa:
|
|
354
|
+
skipMfa: u
|
|
347
355
|
}),
|
|
348
|
-
[o, r, a, n, s,
|
|
349
|
-
), p = e ? g(e, N) : !1, x = e ? g(e,
|
|
350
|
-
return /* @__PURE__ */ t(
|
|
356
|
+
[o, r, a, n, s, u]
|
|
357
|
+
), p = e ? g(e, N) : !1, x = e ? g(e, v) : !1, f = !p && !x;
|
|
358
|
+
return /* @__PURE__ */ t(O.Provider, { value: _, children: /* @__PURE__ */ t(G, { open: i, onOpenChange: c, children: f ? /* @__PURE__ */ d(y, { children: [
|
|
351
359
|
/* @__PURE__ */ t(N, { children: e }),
|
|
352
|
-
/* @__PURE__ */ t(
|
|
353
|
-
] }) : /* @__PURE__ */
|
|
360
|
+
/* @__PURE__ */ t(v, {})
|
|
361
|
+
] }) : /* @__PURE__ */ d(y, { children: [
|
|
354
362
|
e,
|
|
355
|
-
!x && /* @__PURE__ */ t(
|
|
363
|
+
!x && /* @__PURE__ */ t(v, {})
|
|
356
364
|
] }) }) });
|
|
357
365
|
};
|
|
358
|
-
|
|
366
|
+
D.registerPackageVersion("react", q);
|
|
359
367
|
export {
|
|
360
|
-
|
|
361
|
-
|
|
368
|
+
ie as E,
|
|
369
|
+
pt as ExportWallet,
|
|
362
370
|
j as ExportWalletCopyAddress,
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
371
|
+
B as ExportWalletCopyKeyButton,
|
|
372
|
+
it as ExportWalletFooter,
|
|
373
|
+
nt as ExportWalletTitle,
|
|
374
|
+
V as ExportWalletWarning,
|
|
375
|
+
Y as a,
|
|
376
|
+
v as b,
|
|
377
|
+
K as c,
|
|
370
378
|
N as d
|
|
371
379
|
};
|
|
@@ -2,7 +2,7 @@ import "react/jsx-runtime";
|
|
|
2
2
|
import "../../chunks/useSendComponentCallOnce.BHZMuo6E.js";
|
|
3
3
|
import "react";
|
|
4
4
|
import "../../chunks/lite.1fxw3LjI.js";
|
|
5
|
-
import "../../chunks/CDPReactProvider.
|
|
5
|
+
import "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
6
6
|
import { E as W, a as g, b as n, c as C, d as T } from "../ExportWallet/index.js";
|
|
7
7
|
import "../ui/Banner/index.js";
|
|
8
8
|
import "../ui/Button/index.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as n, jsxs as i, Fragment as f } from "react/jsx-runtime";
|
|
2
2
|
import { u as p } from "../../chunks/useSendComponentCallOnce.BHZMuo6E.js";
|
|
3
3
|
import { useId as a } from "react";
|
|
4
|
-
import { u as c } from "../../chunks/CDPReactProvider.
|
|
4
|
+
import { u as c } from "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
5
5
|
import { CoinbaseFooter as F } from "../ui/CoinbaseFooter/index.js";
|
|
6
6
|
import { FundForm as l } from "./FundForm.js";
|
|
7
7
|
import { FundProvider as C, useFundContext as _ } from "./FundProvider.js";
|
|
@@ -2,7 +2,7 @@ import { jsx as o, jsxs as u, Fragment as p } from "react/jsx-runtime";
|
|
|
2
2
|
import { u as w } from "../../chunks/useSendComponentCallOnce.BHZMuo6E.js";
|
|
3
3
|
import { createContext as j, useState as A, useCallback as F, useMemo as S, useId as $, useContext as z } from "react";
|
|
4
4
|
import { c as x } from "../../chunks/lite.1fxw3LjI.js";
|
|
5
|
-
import { u as V } from "../../chunks/CDPReactProvider.
|
|
5
|
+
import { u as V } from "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
6
6
|
import { Fund as k, FundFooter as D } from "../Fund/index.js";
|
|
7
7
|
import { Button as v } from "../ui/Button/index.js";
|
|
8
8
|
import { Modal as H, ModalContent as L, ModalTitle as R, ModalClose as U, ModalTrigger as W } from "../ui/Modal/index.js";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import "../../chunks/CDPReactProvider.
|
|
3
|
+
import "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
4
4
|
import "../SignIn/index.js";
|
|
5
5
|
import "@coinbase/cdp-hooks";
|
|
6
6
|
import "../ui/SwitchSlideTransition/index.js";
|
|
7
7
|
import "../ui/VisuallyHidden/index.js";
|
|
8
|
-
import { a as A } from "../../chunks/LinkAuthFlow.
|
|
8
|
+
import { a as A } from "../../chunks/LinkAuthFlow.CLubKoY0.js";
|
|
9
9
|
import "./LinkAuthItems.js";
|
|
10
10
|
import "./types.js";
|
|
11
11
|
import "../SignIn/SignInProvider.js";
|
|
@@ -3,9 +3,9 @@ import { c as k } from "../../chunks/lite.1fxw3LjI.js";
|
|
|
3
3
|
import "react";
|
|
4
4
|
import { Button as p } from "../ui/Button/index.js";
|
|
5
5
|
import { IconArrowLeft as f } from "../../icons/IconArrowLeft.js";
|
|
6
|
-
import { b as w } from "../../chunks/LinkAuthFlow.
|
|
6
|
+
import { b as w } from "../../chunks/LinkAuthFlow.CLubKoY0.js";
|
|
7
7
|
import { useLinkAuthContext as _ } from "./LinkAuthProvider.js";
|
|
8
|
-
import "../../chunks/CDPReactProvider.
|
|
8
|
+
import "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
9
9
|
import { methodToView as b } from "./utils.js";
|
|
10
10
|
import '../../assets/LinkAuthFlowBackButton.css';const h = "LinkAuthFlowBackButton-module__button___wPKfW", B = "LinkAuthFlowBackButton-module__icon___OUmzY", o = {
|
|
11
11
|
button: h,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import "../../chunks/CDPReactProvider.
|
|
4
|
-
import { L as e, u as n, b as s } from "../../chunks/LinkAuthFlow.
|
|
3
|
+
import "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
4
|
+
import { L as e, u as n, b as s } from "../../chunks/LinkAuthFlow.CLubKoY0.js";
|
|
5
5
|
export {
|
|
6
6
|
e as LinkAuthFlowProvider,
|
|
7
7
|
n as useLinkAuthFlow,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as m } from "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
3
|
import { ToggleListItem as s } from "../ui/ToggleListItem/index.js";
|
|
4
|
-
import "../../chunks/CDPReactProvider.
|
|
4
|
+
import "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
5
5
|
const u = ({
|
|
6
6
|
authMethod: n,
|
|
7
7
|
userAlias: e,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as l } from "react/jsx-runtime";
|
|
2
2
|
import { c as I } from "../../chunks/lite.1fxw3LjI.js";
|
|
3
3
|
import { useMemo as b } from "react";
|
|
4
|
-
import "../../chunks/CDPReactProvider.
|
|
4
|
+
import "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
5
5
|
import { IconAppleLogo as d } from "../../icons/IconAppleLogo.js";
|
|
6
6
|
import { IconEnvelope as f } from "../../icons/IconEnvelope.js";
|
|
7
7
|
import { IconGoogleColorLogo as L } from "../../icons/IconGoogleColorLogo.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as m } from "react/jsx-runtime";
|
|
2
2
|
import { useCurrentUser as c } from "@coinbase/cdp-hooks";
|
|
3
3
|
import { createContext as p, useContext as M, useMemo as r, useReducer as A, useEffect as f } from "react";
|
|
4
|
-
import { u as L } from "../../chunks/CDPReactProvider.
|
|
4
|
+
import { u as L } from "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
5
5
|
import { formatPhoneNumber as k } from "../../utils/formatPhoneNumber.js";
|
|
6
6
|
const T = {
|
|
7
7
|
methodToLink: null,
|
|
@@ -2,15 +2,15 @@ import { jsx as r, jsxs as h, Fragment as C } from "react/jsx-runtime";
|
|
|
2
2
|
import { useLinkOAuth as I } from "@coinbase/cdp-hooks";
|
|
3
3
|
import { u as N } from "../../chunks/useSendComponentCallOnce.BHZMuo6E.js";
|
|
4
4
|
import { useRef as d, useState as P, useCallback as a } from "react";
|
|
5
|
-
import "../../chunks/CDPReactProvider.
|
|
5
|
+
import "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
6
6
|
import { useOauthStatusModal as U } from "../OAuthStatusModal/index.js";
|
|
7
7
|
import { Banner as D } from "../ui/Banner/index.js";
|
|
8
8
|
import { useTimeout as H } from "../../hooks/useTimeout.js";
|
|
9
9
|
import { getMessageFromUnknownError as M } from "../../utils/getMessageFromUnknownError.js";
|
|
10
10
|
import "libphonenumber-js";
|
|
11
11
|
import { toOAuthProviderType as v } from "../../utils/toOAuthProviderType.js";
|
|
12
|
-
import { L as V, a as j } from "../../chunks/LinkAuthFlow.
|
|
13
|
-
import { u as kt } from "../../chunks/LinkAuthFlow.
|
|
12
|
+
import { L as V, a as j } from "../../chunks/LinkAuthFlow.CLubKoY0.js";
|
|
13
|
+
import { u as kt } from "../../chunks/LinkAuthFlow.CLubKoY0.js";
|
|
14
14
|
import { LinkAuthFlowBackButton as K } from "./LinkAuthFlowBackButton.js";
|
|
15
15
|
import { LinkAuthItem as pt } from "./LinkAuthItem.js";
|
|
16
16
|
import { LinkAuthItems as At } from "./LinkAuthItems.js";
|
|
@@ -2,7 +2,7 @@ import { jsx as o, jsxs as n, Fragment as d } from "react/jsx-runtime";
|
|
|
2
2
|
import { u as p } from "../../chunks/useSendComponentCallOnce.BHZMuo6E.js";
|
|
3
3
|
import { createContext as f, useMemo as L, useContext as g } from "react";
|
|
4
4
|
import { c as A } from "../../chunks/lite.1fxw3LjI.js";
|
|
5
|
-
import "../../chunks/CDPReactProvider.
|
|
5
|
+
import "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
6
6
|
import { LinkAuth as C, LinkAuthError as x } from "../LinkAuth/index.js";
|
|
7
7
|
import { Button as m } from "../ui/Button/index.js";
|
|
8
8
|
import { Modal as b, ModalContent as v, ModalTitle as w, ModalClose as N, ModalTrigger as T } from "../ui/Modal/index.js";
|
|
@@ -11,7 +11,7 @@ import { IconXMark as F } from "../../icons/IconXMark.js";
|
|
|
11
11
|
import { childrenHasComponent as c } from "../../utils/childrenHasComponent.js";
|
|
12
12
|
import { LinkAuthTitle as H } from "../LinkAuth/LinkAuthTitle.js";
|
|
13
13
|
import { LinkAuthFlowBackButton as j } from "../LinkAuth/LinkAuthFlowBackButton.js";
|
|
14
|
-
import { a as B } from "../../chunks/LinkAuthFlow.
|
|
14
|
+
import { a as B } from "../../chunks/LinkAuthFlow.CLubKoY0.js";
|
|
15
15
|
import '../../assets/LinkAuthModal.css';const S = "LinkAuthModal-module__header___qoco6", D = "LinkAuthModal-module__error___Srl7H", E = "LinkAuthModal-module__trigger___aHDfG", r = {
|
|
16
16
|
header: S,
|
|
17
17
|
error: D,
|
|
@@ -3,7 +3,7 @@ import "@coinbase/cdp-core";
|
|
|
3
3
|
import { useOAuthState as I } from "@coinbase/cdp-hooks";
|
|
4
4
|
import { u as b } from "../../chunks/useSendComponentCallOnce.BHZMuo6E.js";
|
|
5
5
|
import { useCallback as N, useState as O, useEffect as h, useRef as A } from "react";
|
|
6
|
-
import { a as $ } from "../../chunks/CDPReactProvider.
|
|
6
|
+
import { a as $ } from "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
7
7
|
import { CoinbaseFooter as k } from "../ui/CoinbaseFooter/index.js";
|
|
8
8
|
import { LoadingSpinner as w } from "../ui/LoadingSpinner/index.js";
|
|
9
9
|
import { Modal as E, ModalContent as L, ModalTitle as y, ModalDescription as R } from "../ui/Modal/index.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as n, jsxs as r } from "react/jsx-runtime";
|
|
2
2
|
import { useCallback as v, useMemo as y } from "react";
|
|
3
|
-
import "../../chunks/CDPReactProvider.
|
|
3
|
+
import "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
4
4
|
import { useSignInWithOAuth as S } from "./hooks/useSignInWithOAuth.js";
|
|
5
5
|
import { useSignInContext as _ } from "./SignInProvider.js";
|
|
6
6
|
import { Button as C } from "../ui/Button/index.js";
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { jsx as n } from "react/jsx-runtime";
|
|
2
2
|
import { useMemo as f } from "react";
|
|
3
|
-
import { Button as
|
|
4
|
-
import { IconArrowLeft as
|
|
3
|
+
import { Button as _ } from "../ui/Button/index.js";
|
|
4
|
+
import { IconArrowLeft as S } from "../../icons/IconArrowLeft.js";
|
|
5
5
|
import "../../theme/theme.js";
|
|
6
|
-
import { useSignInContext as
|
|
6
|
+
import { useSignInContext as d } from "./SignInProvider.js";
|
|
7
7
|
import "@coinbase/cdp-hooks";
|
|
8
|
-
import "../../chunks/CDPReactProvider.
|
|
9
|
-
import '../../assets/SignInBackButton.css';const
|
|
10
|
-
icon:
|
|
11
|
-
},
|
|
8
|
+
import "../../chunks/CDPReactProvider.C38bKQ2x.js";
|
|
9
|
+
import '../../assets/SignInBackButton.css';const B = "SignInBackButton-module__icon___stNFS", k = {
|
|
10
|
+
icon: B
|
|
11
|
+
}, E = ({
|
|
12
12
|
step: t,
|
|
13
13
|
children: i,
|
|
14
14
|
onClick: r,
|
|
@@ -17,11 +17,11 @@ import '../../assets/SignInBackButton.css';const _ = "SignInBackButton-module__i
|
|
|
17
17
|
["aria-label"]: s = "Back",
|
|
18
18
|
...a
|
|
19
19
|
}) => {
|
|
20
|
-
const { state: o, dispatch: m } =
|
|
21
|
-
r?.(u), m({ type: "
|
|
20
|
+
const { state: o, dispatch: m } = d(), p = f(() => t || o.step, [t, o.step]), l = (u) => {
|
|
21
|
+
r?.(u), m({ type: "GO_TO_PREVIOUS_STEP" });
|
|
22
22
|
};
|
|
23
23
|
return p !== "verification" ? null : /* @__PURE__ */ n(
|
|
24
|
-
|
|
24
|
+
_,
|
|
25
25
|
{
|
|
26
26
|
type: "button",
|
|
27
27
|
"aria-label": s,
|
|
@@ -29,10 +29,10 @@ import '../../assets/SignInBackButton.css';const _ = "SignInBackButton-module__i
|
|
|
29
29
|
size: e,
|
|
30
30
|
variant: c,
|
|
31
31
|
...a,
|
|
32
|
-
children: i || /* @__PURE__ */ n(
|
|
32
|
+
children: i || /* @__PURE__ */ n(S, { className: k.icon })
|
|
33
33
|
}
|
|
34
34
|
);
|
|
35
35
|
};
|
|
36
36
|
export {
|
|
37
|
-
|
|
37
|
+
E as SignInBackButton
|
|
38
38
|
};
|