@volr/react-ui 0.2.6 → 0.2.8
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.cjs +27 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.js +27 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -592,7 +592,32 @@ var en = {
|
|
|
592
592
|
later: "Do it later",
|
|
593
593
|
inProgress: "Setting up...",
|
|
594
594
|
success: "Passkey set up successfully!",
|
|
595
|
-
|
|
595
|
+
successTitle: "Migration complete!",
|
|
596
|
+
successMessage: "Your passkey is set up for this site.",
|
|
597
|
+
waitingHint: "Complete the setup in the popup window.",
|
|
598
|
+
error: "Failed to set up passkey. Please try again.",
|
|
599
|
+
// Source popup (domain-a.com)
|
|
600
|
+
source: {
|
|
601
|
+
title: "Verify with existing passkey",
|
|
602
|
+
description: "Verify your identity to move your wallet to {{targetDomain}}.",
|
|
603
|
+
ready: "Ready to verify",
|
|
604
|
+
authenticating: "Verifying...",
|
|
605
|
+
decrypting: "Decrypting wallet data...",
|
|
606
|
+
waiting: "Waiting for registration on the new site...",
|
|
607
|
+
done: "Verification complete!",
|
|
608
|
+
waitingHint: "Complete passkey registration in the new window."
|
|
609
|
+
},
|
|
610
|
+
// Target popup (domain-b.com)
|
|
611
|
+
target: {
|
|
612
|
+
title: "Register a passkey for this site",
|
|
613
|
+
description: "Register a passkey for secure login on {{currentDomain}}.",
|
|
614
|
+
ready: "Ready to register",
|
|
615
|
+
connecting: "Connecting to the original site...",
|
|
616
|
+
registering: "Registering new passkey...",
|
|
617
|
+
completing: "Finishing setup...",
|
|
618
|
+
success: "Passkey registration complete!",
|
|
619
|
+
closing: "Closing window..."
|
|
620
|
+
}
|
|
596
621
|
}
|
|
597
622
|
},
|
|
598
623
|
success: {
|
|
@@ -4926,7 +4951,7 @@ function AccountMainView({
|
|
|
4926
4951
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "volr:flex volr:flex-col", style: { gap: "1rem" }, children: [
|
|
4927
4952
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "volr:rounded-2xl volr:border volr:border-slate-200 volr:bg-white volr:py-7 volr:shadow-sm", children: [
|
|
4928
4953
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "volr:text-xs volr:font-medium volr:uppercase volr:tracking-wider volr:text-slate-500 volr:mb-3 volr:text-center", children: t("account.totalBalance") }),
|
|
4929
|
-
isLoading ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "volr:animate-pulse volr:text-center volr:w-full", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "volr:h-16 volr:w-48 volr:bg-slate-200 volr:rounded-lg" }) }) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
4954
|
+
isLoading ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "volr:animate-pulse volr:text-center volr:w-full", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "volr:h-16 volr:w-48 volr:mx-auto volr:bg-slate-200 volr:rounded-lg" }) }) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
4930
4955
|
"p",
|
|
4931
4956
|
{
|
|
4932
4957
|
className: "volr:font-semibold volr:text-slate-900 volr:tracking-tight volr:text-center",
|