@volr/react-ui 0.1.82 → 0.1.84
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 +214 -398
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +214 -398
- 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";
|
|
@@ -129,6 +130,18 @@ declare const en: {
|
|
|
129
130
|
readonly label: "Wallet Login";
|
|
130
131
|
};
|
|
131
132
|
};
|
|
133
|
+
readonly siwe: {
|
|
134
|
+
readonly noWalletFound: "No Ethereum wallet found. Please install MetaMask or another wallet.";
|
|
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.";
|
|
144
|
+
};
|
|
132
145
|
readonly passkey: {
|
|
133
146
|
readonly titleTouchId: "Set up Touch ID login";
|
|
134
147
|
readonly titleFaceId: "Set up Face 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";
|
|
@@ -129,6 +130,18 @@ declare const en: {
|
|
|
129
130
|
readonly label: "Wallet Login";
|
|
130
131
|
};
|
|
131
132
|
};
|
|
133
|
+
readonly siwe: {
|
|
134
|
+
readonly noWalletFound: "No Ethereum wallet found. Please install MetaMask or another wallet.";
|
|
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.";
|
|
144
|
+
};
|
|
132
145
|
readonly passkey: {
|
|
133
146
|
readonly titleTouchId: "Set up Touch ID login";
|
|
134
147
|
readonly titleFaceId: "Set up Face ID login";
|