@volr/react-ui 0.1.109 → 0.1.111
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 +1887 -422
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +63 -0
- package/dist/index.d.ts +63 -0
- package/dist/index.js +1747 -282
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -96,6 +96,8 @@ declare const en: {
|
|
|
96
96
|
readonly back: "Back";
|
|
97
97
|
readonly loading: "Loading...";
|
|
98
98
|
readonly cancel: "Cancel";
|
|
99
|
+
readonly done: "Done";
|
|
100
|
+
readonly tryAgain: "Try again";
|
|
99
101
|
};
|
|
100
102
|
readonly login: {
|
|
101
103
|
readonly title: "Sign in";
|
|
@@ -176,6 +178,49 @@ declare const en: {
|
|
|
176
178
|
readonly walletAddress: "Wallet Address";
|
|
177
179
|
readonly email: "Email";
|
|
178
180
|
readonly logout: "Log out";
|
|
181
|
+
readonly totalBalance: "Total Balance";
|
|
182
|
+
readonly noAssets: "No assets configured";
|
|
183
|
+
readonly menu: {
|
|
184
|
+
readonly assets: "Assets";
|
|
185
|
+
readonly withdraw: "Withdraw";
|
|
186
|
+
readonly payments: "Payment History";
|
|
187
|
+
readonly account: "Account";
|
|
188
|
+
};
|
|
189
|
+
readonly info: {
|
|
190
|
+
readonly loginMethod: {
|
|
191
|
+
readonly label: "Login Method";
|
|
192
|
+
readonly email: "Email";
|
|
193
|
+
readonly google: "Google";
|
|
194
|
+
readonly twitter: "Twitter";
|
|
195
|
+
readonly wallet: "Wallet";
|
|
196
|
+
};
|
|
197
|
+
readonly connectedWallet: "Connected Wallet";
|
|
198
|
+
readonly signerType: "Signer Type";
|
|
199
|
+
};
|
|
200
|
+
readonly withdraw: {
|
|
201
|
+
readonly title: "Withdraw";
|
|
202
|
+
readonly selectToken: "Select token to withdraw";
|
|
203
|
+
readonly toAddress: "Destination Address";
|
|
204
|
+
readonly amount: "Amount";
|
|
205
|
+
readonly available: "Available";
|
|
206
|
+
readonly useConnectedWallet: "Use connected wallet";
|
|
207
|
+
readonly confirm: "Confirm Withdrawal";
|
|
208
|
+
readonly processing: "Processing withdrawal...";
|
|
209
|
+
readonly success: "Withdrawal Successful";
|
|
210
|
+
readonly sent: "sent";
|
|
211
|
+
readonly failed: "Withdrawal Failed";
|
|
212
|
+
readonly unknownError: "An unknown error occurred";
|
|
213
|
+
};
|
|
214
|
+
readonly payments: {
|
|
215
|
+
readonly payment: "Payment";
|
|
216
|
+
readonly noPayments: "No payment history";
|
|
217
|
+
readonly fetchError: "Failed to load payment history";
|
|
218
|
+
readonly createdAt: "Created";
|
|
219
|
+
readonly confirmedAt: "Confirmed";
|
|
220
|
+
readonly token: "Token";
|
|
221
|
+
readonly txHash: "Transaction";
|
|
222
|
+
readonly referenceId: "Reference ID";
|
|
223
|
+
};
|
|
179
224
|
};
|
|
180
225
|
readonly deposit: {
|
|
181
226
|
readonly selectTitle: "Select asset to deposit";
|
|
@@ -197,6 +242,24 @@ declare const en: {
|
|
|
197
242
|
readonly otherToken: "Deposit with another token";
|
|
198
243
|
readonly noToken: "Don't have this token?";
|
|
199
244
|
readonly getOtherToken: "Deposit with another token";
|
|
245
|
+
readonly useWallet: "Use connected wallet";
|
|
246
|
+
readonly walletTransfer: {
|
|
247
|
+
readonly title: "Transfer from Wallet";
|
|
248
|
+
readonly selectWallet: "Select wallet";
|
|
249
|
+
readonly noWallets: "No wallets detected";
|
|
250
|
+
readonly connecting: "Connecting...";
|
|
251
|
+
readonly balance: "Balance";
|
|
252
|
+
readonly amount: "Amount";
|
|
253
|
+
readonly amountPlaceholder: "Enter amount";
|
|
254
|
+
readonly max: "MAX";
|
|
255
|
+
readonly transfer: "Transfer";
|
|
256
|
+
readonly transferring: "Transferring...";
|
|
257
|
+
readonly success: "Transfer successful!";
|
|
258
|
+
readonly insufficientBalance: "Insufficient balance";
|
|
259
|
+
readonly invalidAmount: "Invalid amount";
|
|
260
|
+
readonly wrongNetwork: "Please switch to {{network}}";
|
|
261
|
+
readonly switchNetwork: "Switch Network";
|
|
262
|
+
};
|
|
200
263
|
};
|
|
201
264
|
readonly sign: {
|
|
202
265
|
readonly title: "Sign Request";
|
package/dist/index.d.ts
CHANGED
|
@@ -96,6 +96,8 @@ declare const en: {
|
|
|
96
96
|
readonly back: "Back";
|
|
97
97
|
readonly loading: "Loading...";
|
|
98
98
|
readonly cancel: "Cancel";
|
|
99
|
+
readonly done: "Done";
|
|
100
|
+
readonly tryAgain: "Try again";
|
|
99
101
|
};
|
|
100
102
|
readonly login: {
|
|
101
103
|
readonly title: "Sign in";
|
|
@@ -176,6 +178,49 @@ declare const en: {
|
|
|
176
178
|
readonly walletAddress: "Wallet Address";
|
|
177
179
|
readonly email: "Email";
|
|
178
180
|
readonly logout: "Log out";
|
|
181
|
+
readonly totalBalance: "Total Balance";
|
|
182
|
+
readonly noAssets: "No assets configured";
|
|
183
|
+
readonly menu: {
|
|
184
|
+
readonly assets: "Assets";
|
|
185
|
+
readonly withdraw: "Withdraw";
|
|
186
|
+
readonly payments: "Payment History";
|
|
187
|
+
readonly account: "Account";
|
|
188
|
+
};
|
|
189
|
+
readonly info: {
|
|
190
|
+
readonly loginMethod: {
|
|
191
|
+
readonly label: "Login Method";
|
|
192
|
+
readonly email: "Email";
|
|
193
|
+
readonly google: "Google";
|
|
194
|
+
readonly twitter: "Twitter";
|
|
195
|
+
readonly wallet: "Wallet";
|
|
196
|
+
};
|
|
197
|
+
readonly connectedWallet: "Connected Wallet";
|
|
198
|
+
readonly signerType: "Signer Type";
|
|
199
|
+
};
|
|
200
|
+
readonly withdraw: {
|
|
201
|
+
readonly title: "Withdraw";
|
|
202
|
+
readonly selectToken: "Select token to withdraw";
|
|
203
|
+
readonly toAddress: "Destination Address";
|
|
204
|
+
readonly amount: "Amount";
|
|
205
|
+
readonly available: "Available";
|
|
206
|
+
readonly useConnectedWallet: "Use connected wallet";
|
|
207
|
+
readonly confirm: "Confirm Withdrawal";
|
|
208
|
+
readonly processing: "Processing withdrawal...";
|
|
209
|
+
readonly success: "Withdrawal Successful";
|
|
210
|
+
readonly sent: "sent";
|
|
211
|
+
readonly failed: "Withdrawal Failed";
|
|
212
|
+
readonly unknownError: "An unknown error occurred";
|
|
213
|
+
};
|
|
214
|
+
readonly payments: {
|
|
215
|
+
readonly payment: "Payment";
|
|
216
|
+
readonly noPayments: "No payment history";
|
|
217
|
+
readonly fetchError: "Failed to load payment history";
|
|
218
|
+
readonly createdAt: "Created";
|
|
219
|
+
readonly confirmedAt: "Confirmed";
|
|
220
|
+
readonly token: "Token";
|
|
221
|
+
readonly txHash: "Transaction";
|
|
222
|
+
readonly referenceId: "Reference ID";
|
|
223
|
+
};
|
|
179
224
|
};
|
|
180
225
|
readonly deposit: {
|
|
181
226
|
readonly selectTitle: "Select asset to deposit";
|
|
@@ -197,6 +242,24 @@ declare const en: {
|
|
|
197
242
|
readonly otherToken: "Deposit with another token";
|
|
198
243
|
readonly noToken: "Don't have this token?";
|
|
199
244
|
readonly getOtherToken: "Deposit with another token";
|
|
245
|
+
readonly useWallet: "Use connected wallet";
|
|
246
|
+
readonly walletTransfer: {
|
|
247
|
+
readonly title: "Transfer from Wallet";
|
|
248
|
+
readonly selectWallet: "Select wallet";
|
|
249
|
+
readonly noWallets: "No wallets detected";
|
|
250
|
+
readonly connecting: "Connecting...";
|
|
251
|
+
readonly balance: "Balance";
|
|
252
|
+
readonly amount: "Amount";
|
|
253
|
+
readonly amountPlaceholder: "Enter amount";
|
|
254
|
+
readonly max: "MAX";
|
|
255
|
+
readonly transfer: "Transfer";
|
|
256
|
+
readonly transferring: "Transferring...";
|
|
257
|
+
readonly success: "Transfer successful!";
|
|
258
|
+
readonly insufficientBalance: "Insufficient balance";
|
|
259
|
+
readonly invalidAmount: "Invalid amount";
|
|
260
|
+
readonly wrongNetwork: "Please switch to {{network}}";
|
|
261
|
+
readonly switchNetwork: "Switch Network";
|
|
262
|
+
};
|
|
200
263
|
};
|
|
201
264
|
readonly sign: {
|
|
202
265
|
readonly title: "Sign Request";
|