@volr/react-ui 0.1.116 → 0.1.118
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 +1934 -1851
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +1934 -1851
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -182,6 +182,7 @@ declare const en: {
|
|
|
182
182
|
readonly noAssets: "No assets configured";
|
|
183
183
|
readonly menu: {
|
|
184
184
|
readonly assets: "Assets";
|
|
185
|
+
readonly deposit: "Deposit";
|
|
185
186
|
readonly withdraw: "Withdraw";
|
|
186
187
|
readonly payments: "Payment History";
|
|
187
188
|
readonly account: "Account";
|
|
@@ -268,6 +269,15 @@ declare const en: {
|
|
|
268
269
|
readonly messageLabel: "Message";
|
|
269
270
|
readonly domainLabel: "Domain";
|
|
270
271
|
};
|
|
272
|
+
readonly payment: {
|
|
273
|
+
readonly processing: {
|
|
274
|
+
readonly signing: "Confirming payment...";
|
|
275
|
+
readonly broadcasting: "Sending payment...";
|
|
276
|
+
readonly confirming: "Almost done...";
|
|
277
|
+
readonly default: "Processing...";
|
|
278
|
+
readonly doNotClose: "Please don't close this window";
|
|
279
|
+
};
|
|
280
|
+
};
|
|
271
281
|
readonly errors: {
|
|
272
282
|
readonly webauthnNotSupported: "WebAuthn API is not supported";
|
|
273
283
|
readonly passkeyCreationFailed: "Failed to create passkey";
|
package/dist/index.d.ts
CHANGED
|
@@ -182,6 +182,7 @@ declare const en: {
|
|
|
182
182
|
readonly noAssets: "No assets configured";
|
|
183
183
|
readonly menu: {
|
|
184
184
|
readonly assets: "Assets";
|
|
185
|
+
readonly deposit: "Deposit";
|
|
185
186
|
readonly withdraw: "Withdraw";
|
|
186
187
|
readonly payments: "Payment History";
|
|
187
188
|
readonly account: "Account";
|
|
@@ -268,6 +269,15 @@ declare const en: {
|
|
|
268
269
|
readonly messageLabel: "Message";
|
|
269
270
|
readonly domainLabel: "Domain";
|
|
270
271
|
};
|
|
272
|
+
readonly payment: {
|
|
273
|
+
readonly processing: {
|
|
274
|
+
readonly signing: "Confirming payment...";
|
|
275
|
+
readonly broadcasting: "Sending payment...";
|
|
276
|
+
readonly confirming: "Almost done...";
|
|
277
|
+
readonly default: "Processing...";
|
|
278
|
+
readonly doNotClose: "Please don't close this window";
|
|
279
|
+
};
|
|
280
|
+
};
|
|
271
281
|
readonly errors: {
|
|
272
282
|
readonly webauthnNotSupported: "WebAuthn API is not supported";
|
|
273
283
|
readonly passkeyCreationFailed: "Failed to create passkey";
|