@volr/react-ui 0.1.83 → 0.1.85
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 +158 -385
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -2
- package/dist/index.d.ts +10 -2
- package/dist/index.js +158 -385
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -95,6 +95,7 @@ declare const en: {
|
|
|
95
95
|
readonly common: {
|
|
96
96
|
readonly back: "Back";
|
|
97
97
|
readonly loading: "Loading...";
|
|
98
|
+
readonly cancel: "Cancel";
|
|
98
99
|
};
|
|
99
100
|
readonly login: {
|
|
100
101
|
readonly title: "Sign in";
|
|
@@ -131,8 +132,15 @@ declare const en: {
|
|
|
131
132
|
};
|
|
132
133
|
readonly siwe: {
|
|
133
134
|
readonly noWalletFound: "No Ethereum wallet found. Please install MetaMask or another wallet.";
|
|
134
|
-
readonly mobileGuide: "
|
|
135
|
-
readonly
|
|
135
|
+
readonly mobileGuide: "To connect your wallet:";
|
|
136
|
+
readonly mobileStep1: "Copy the sign URL below";
|
|
137
|
+
readonly mobileStep2: "Open your wallet app (MetaMask, etc.)";
|
|
138
|
+
readonly mobileStep3: "Paste URL in the app browser and sign";
|
|
139
|
+
readonly copyUrl: "Copy Sign URL";
|
|
140
|
+
readonly urlCopied: "URL copied! Paste it in your wallet app browser.";
|
|
141
|
+
readonly startMobileSession: "Connect Wallet";
|
|
142
|
+
readonly waitingForSignature: "Waiting for signature...";
|
|
143
|
+
readonly sessionExpired: "Session expired. Please try again.";
|
|
136
144
|
};
|
|
137
145
|
readonly passkey: {
|
|
138
146
|
readonly titleTouchId: "Set up Touch ID login";
|
package/dist/index.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ declare const en: {
|
|
|
95
95
|
readonly common: {
|
|
96
96
|
readonly back: "Back";
|
|
97
97
|
readonly loading: "Loading...";
|
|
98
|
+
readonly cancel: "Cancel";
|
|
98
99
|
};
|
|
99
100
|
readonly login: {
|
|
100
101
|
readonly title: "Sign in";
|
|
@@ -131,8 +132,15 @@ declare const en: {
|
|
|
131
132
|
};
|
|
132
133
|
readonly siwe: {
|
|
133
134
|
readonly noWalletFound: "No Ethereum wallet found. Please install MetaMask or another wallet.";
|
|
134
|
-
readonly mobileGuide: "
|
|
135
|
-
readonly
|
|
135
|
+
readonly mobileGuide: "To connect your wallet:";
|
|
136
|
+
readonly mobileStep1: "Copy the sign URL below";
|
|
137
|
+
readonly mobileStep2: "Open your wallet app (MetaMask, etc.)";
|
|
138
|
+
readonly mobileStep3: "Paste URL in the app browser and sign";
|
|
139
|
+
readonly copyUrl: "Copy Sign URL";
|
|
140
|
+
readonly urlCopied: "URL copied! Paste it in your wallet app browser.";
|
|
141
|
+
readonly startMobileSession: "Connect Wallet";
|
|
142
|
+
readonly waitingForSignature: "Waiting for signature...";
|
|
143
|
+
readonly sessionExpired: "Session expired. Please try again.";
|
|
136
144
|
};
|
|
137
145
|
readonly passkey: {
|
|
138
146
|
readonly titleTouchId: "Set up Touch ID login";
|