@volr/react-ui 0.1.127 → 0.1.129
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 +477 -26
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +25 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +477 -26
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -103,6 +103,8 @@ declare const en: {
|
|
|
103
103
|
readonly login: {
|
|
104
104
|
readonly title: "Sign in";
|
|
105
105
|
readonly description: "Choose your preferred sign-in method";
|
|
106
|
+
readonly completing: "Completing login...";
|
|
107
|
+
readonly pleaseWait: "Please wait a moment";
|
|
106
108
|
readonly or: "or";
|
|
107
109
|
readonly terms: "By continuing, you agree to our Terms of Service and Privacy Policy";
|
|
108
110
|
readonly email: {
|
|
@@ -207,6 +209,29 @@ declare const en: {
|
|
|
207
209
|
readonly inProgress: "Setting up...";
|
|
208
210
|
readonly success: "Passkey set up successfully!";
|
|
209
211
|
readonly error: "Failed to set up passkey. Please try again.";
|
|
212
|
+
readonly successTitle: "Migration Complete!";
|
|
213
|
+
readonly successMessage: "Your passkey has been set up for this site.";
|
|
214
|
+
readonly waitingHint: "Please complete the setup in the popup window.";
|
|
215
|
+
readonly source: {
|
|
216
|
+
readonly title: "Authenticate with existing passkey";
|
|
217
|
+
readonly description: "Verify your identity to migrate wallet to {{targetDomain}}";
|
|
218
|
+
readonly ready: "Ready to authenticate";
|
|
219
|
+
readonly authenticating: "Authenticating...";
|
|
220
|
+
readonly decrypting: "Decrypting wallet data...";
|
|
221
|
+
readonly waiting: "Waiting for registration on new site...";
|
|
222
|
+
readonly done: "Authentication complete!";
|
|
223
|
+
readonly waitingHint: "Please complete passkey registration in the new window.";
|
|
224
|
+
};
|
|
225
|
+
readonly target: {
|
|
226
|
+
readonly title: "Register passkey for this site";
|
|
227
|
+
readonly description: "Set up secure login for {{currentDomain}}";
|
|
228
|
+
readonly ready: "Ready to register";
|
|
229
|
+
readonly connecting: "Connecting to source site...";
|
|
230
|
+
readonly registering: "Registering new passkey...";
|
|
231
|
+
readonly completing: "Completing setup...";
|
|
232
|
+
readonly success: "Passkey registered!";
|
|
233
|
+
readonly closing: "Closing window...";
|
|
234
|
+
};
|
|
210
235
|
};
|
|
211
236
|
};
|
|
212
237
|
readonly success: {
|
package/dist/index.d.ts
CHANGED
|
@@ -103,6 +103,8 @@ declare const en: {
|
|
|
103
103
|
readonly login: {
|
|
104
104
|
readonly title: "Sign in";
|
|
105
105
|
readonly description: "Choose your preferred sign-in method";
|
|
106
|
+
readonly completing: "Completing login...";
|
|
107
|
+
readonly pleaseWait: "Please wait a moment";
|
|
106
108
|
readonly or: "or";
|
|
107
109
|
readonly terms: "By continuing, you agree to our Terms of Service and Privacy Policy";
|
|
108
110
|
readonly email: {
|
|
@@ -207,6 +209,29 @@ declare const en: {
|
|
|
207
209
|
readonly inProgress: "Setting up...";
|
|
208
210
|
readonly success: "Passkey set up successfully!";
|
|
209
211
|
readonly error: "Failed to set up passkey. Please try again.";
|
|
212
|
+
readonly successTitle: "Migration Complete!";
|
|
213
|
+
readonly successMessage: "Your passkey has been set up for this site.";
|
|
214
|
+
readonly waitingHint: "Please complete the setup in the popup window.";
|
|
215
|
+
readonly source: {
|
|
216
|
+
readonly title: "Authenticate with existing passkey";
|
|
217
|
+
readonly description: "Verify your identity to migrate wallet to {{targetDomain}}";
|
|
218
|
+
readonly ready: "Ready to authenticate";
|
|
219
|
+
readonly authenticating: "Authenticating...";
|
|
220
|
+
readonly decrypting: "Decrypting wallet data...";
|
|
221
|
+
readonly waiting: "Waiting for registration on new site...";
|
|
222
|
+
readonly done: "Authentication complete!";
|
|
223
|
+
readonly waitingHint: "Please complete passkey registration in the new window.";
|
|
224
|
+
};
|
|
225
|
+
readonly target: {
|
|
226
|
+
readonly title: "Register passkey for this site";
|
|
227
|
+
readonly description: "Set up secure login for {{currentDomain}}";
|
|
228
|
+
readonly ready: "Ready to register";
|
|
229
|
+
readonly connecting: "Connecting to source site...";
|
|
230
|
+
readonly registering: "Registering new passkey...";
|
|
231
|
+
readonly completing: "Completing setup...";
|
|
232
|
+
readonly success: "Passkey registered!";
|
|
233
|
+
readonly closing: "Closing window...";
|
|
234
|
+
};
|
|
210
235
|
};
|
|
211
236
|
};
|
|
212
237
|
readonly success: {
|