@volr/react-ui 0.2.7 → 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 +26 -1
- 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 +26 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -213,7 +213,30 @@ declare const en: {
|
|
|
213
213
|
readonly later: "Do it later";
|
|
214
214
|
readonly inProgress: "Setting up...";
|
|
215
215
|
readonly success: "Passkey set up successfully!";
|
|
216
|
+
readonly successTitle: "Migration complete!";
|
|
217
|
+
readonly successMessage: "Your passkey is set up for this site.";
|
|
218
|
+
readonly waitingHint: "Complete the setup in the popup window.";
|
|
216
219
|
readonly error: "Failed to set up passkey. Please try again.";
|
|
220
|
+
readonly source: {
|
|
221
|
+
readonly title: "Verify with existing passkey";
|
|
222
|
+
readonly description: "Verify your identity to move your wallet to {{targetDomain}}.";
|
|
223
|
+
readonly ready: "Ready to verify";
|
|
224
|
+
readonly authenticating: "Verifying...";
|
|
225
|
+
readonly decrypting: "Decrypting wallet data...";
|
|
226
|
+
readonly waiting: "Waiting for registration on the new site...";
|
|
227
|
+
readonly done: "Verification complete!";
|
|
228
|
+
readonly waitingHint: "Complete passkey registration in the new window.";
|
|
229
|
+
};
|
|
230
|
+
readonly target: {
|
|
231
|
+
readonly title: "Register a passkey for this site";
|
|
232
|
+
readonly description: "Register a passkey for secure login on {{currentDomain}}.";
|
|
233
|
+
readonly ready: "Ready to register";
|
|
234
|
+
readonly connecting: "Connecting to the original site...";
|
|
235
|
+
readonly registering: "Registering new passkey...";
|
|
236
|
+
readonly completing: "Finishing setup...";
|
|
237
|
+
readonly success: "Passkey registration complete!";
|
|
238
|
+
readonly closing: "Closing window...";
|
|
239
|
+
};
|
|
217
240
|
};
|
|
218
241
|
};
|
|
219
242
|
readonly success: {
|
package/dist/index.d.ts
CHANGED
|
@@ -213,7 +213,30 @@ declare const en: {
|
|
|
213
213
|
readonly later: "Do it later";
|
|
214
214
|
readonly inProgress: "Setting up...";
|
|
215
215
|
readonly success: "Passkey set up successfully!";
|
|
216
|
+
readonly successTitle: "Migration complete!";
|
|
217
|
+
readonly successMessage: "Your passkey is set up for this site.";
|
|
218
|
+
readonly waitingHint: "Complete the setup in the popup window.";
|
|
216
219
|
readonly error: "Failed to set up passkey. Please try again.";
|
|
220
|
+
readonly source: {
|
|
221
|
+
readonly title: "Verify with existing passkey";
|
|
222
|
+
readonly description: "Verify your identity to move your wallet to {{targetDomain}}.";
|
|
223
|
+
readonly ready: "Ready to verify";
|
|
224
|
+
readonly authenticating: "Verifying...";
|
|
225
|
+
readonly decrypting: "Decrypting wallet data...";
|
|
226
|
+
readonly waiting: "Waiting for registration on the new site...";
|
|
227
|
+
readonly done: "Verification complete!";
|
|
228
|
+
readonly waitingHint: "Complete passkey registration in the new window.";
|
|
229
|
+
};
|
|
230
|
+
readonly target: {
|
|
231
|
+
readonly title: "Register a passkey for this site";
|
|
232
|
+
readonly description: "Register a passkey for secure login on {{currentDomain}}.";
|
|
233
|
+
readonly ready: "Ready to register";
|
|
234
|
+
readonly connecting: "Connecting to the original site...";
|
|
235
|
+
readonly registering: "Registering new passkey...";
|
|
236
|
+
readonly completing: "Finishing setup...";
|
|
237
|
+
readonly success: "Passkey registration complete!";
|
|
238
|
+
readonly closing: "Closing window...";
|
|
239
|
+
};
|
|
217
240
|
};
|
|
218
241
|
};
|
|
219
242
|
readonly success: {
|
package/dist/index.js
CHANGED
|
@@ -587,7 +587,32 @@ var en = {
|
|
|
587
587
|
later: "Do it later",
|
|
588
588
|
inProgress: "Setting up...",
|
|
589
589
|
success: "Passkey set up successfully!",
|
|
590
|
-
|
|
590
|
+
successTitle: "Migration complete!",
|
|
591
|
+
successMessage: "Your passkey is set up for this site.",
|
|
592
|
+
waitingHint: "Complete the setup in the popup window.",
|
|
593
|
+
error: "Failed to set up passkey. Please try again.",
|
|
594
|
+
// Source popup (domain-a.com)
|
|
595
|
+
source: {
|
|
596
|
+
title: "Verify with existing passkey",
|
|
597
|
+
description: "Verify your identity to move your wallet to {{targetDomain}}.",
|
|
598
|
+
ready: "Ready to verify",
|
|
599
|
+
authenticating: "Verifying...",
|
|
600
|
+
decrypting: "Decrypting wallet data...",
|
|
601
|
+
waiting: "Waiting for registration on the new site...",
|
|
602
|
+
done: "Verification complete!",
|
|
603
|
+
waitingHint: "Complete passkey registration in the new window."
|
|
604
|
+
},
|
|
605
|
+
// Target popup (domain-b.com)
|
|
606
|
+
target: {
|
|
607
|
+
title: "Register a passkey for this site",
|
|
608
|
+
description: "Register a passkey for secure login on {{currentDomain}}.",
|
|
609
|
+
ready: "Ready to register",
|
|
610
|
+
connecting: "Connecting to the original site...",
|
|
611
|
+
registering: "Registering new passkey...",
|
|
612
|
+
completing: "Finishing setup...",
|
|
613
|
+
success: "Passkey registration complete!",
|
|
614
|
+
closing: "Closing window..."
|
|
615
|
+
}
|
|
591
616
|
}
|
|
592
617
|
},
|
|
593
618
|
success: {
|