@volr/react-ui 0.1.100 → 0.1.101
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/README.md +42 -7
- package/dist/index.cjs +470 -132
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +351 -13
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React$1 from 'react';
|
|
2
2
|
import { KeyStorageType, VolrConfig, PayOptions as PayOptions$1, PaymentResult, PaymentHistoryOptions, PaymentHistoryResult } from '@volr/react';
|
|
3
|
-
export { EvmClient, KeyStorageType, PaymentHistoryOptions, PaymentHistoryResult, PaymentResult, PaymentStatus, PaymentToken, SendBatchOverloads, SignerType, UseVolrPaymentApiReturn, VolrClient, VolrConfig, VolrProvider, VolrUser, useDepositListener, usePasskeyEnrollment, useVolr, useVolrLogin, useVolrPaymentApi } from '@volr/react';
|
|
3
|
+
export { EvmChainClient, EvmClient, EvmNamespace, KeyStorageType, OnSignRequest, PaymentHistoryOptions, PaymentHistoryResult, PaymentResult, PaymentStatus, PaymentToken, SendBatchOverloads, SignRequest, SignerType, UseVolrPaymentApiReturn, VolrClient, VolrConfig, VolrProvider, VolrUser, useDepositListener, usePasskeyEnrollment, useVolr, useVolrLogin, useVolrPaymentApi } from '@volr/react';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
|
|
6
6
|
interface BrandingConfig {
|
|
@@ -198,6 +198,13 @@ declare const en: {
|
|
|
198
198
|
readonly noToken: "Don't have this token?";
|
|
199
199
|
readonly getOtherToken: "Deposit with another token";
|
|
200
200
|
};
|
|
201
|
+
readonly sign: {
|
|
202
|
+
readonly title: "Sign Request";
|
|
203
|
+
readonly description: "An application is requesting your signature. Please review the content below before signing.";
|
|
204
|
+
readonly confirm: "Sign";
|
|
205
|
+
readonly messageLabel: "Message";
|
|
206
|
+
readonly domainLabel: "Domain";
|
|
207
|
+
};
|
|
201
208
|
readonly errors: {
|
|
202
209
|
readonly webauthnNotSupported: "WebAuthn API is not supported";
|
|
203
210
|
readonly passkeyCreationFailed: "Failed to create passkey";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React$1 from 'react';
|
|
2
2
|
import { KeyStorageType, VolrConfig, PayOptions as PayOptions$1, PaymentResult, PaymentHistoryOptions, PaymentHistoryResult } from '@volr/react';
|
|
3
|
-
export { EvmClient, KeyStorageType, PaymentHistoryOptions, PaymentHistoryResult, PaymentResult, PaymentStatus, PaymentToken, SendBatchOverloads, SignerType, UseVolrPaymentApiReturn, VolrClient, VolrConfig, VolrProvider, VolrUser, useDepositListener, usePasskeyEnrollment, useVolr, useVolrLogin, useVolrPaymentApi } from '@volr/react';
|
|
3
|
+
export { EvmChainClient, EvmClient, EvmNamespace, KeyStorageType, OnSignRequest, PaymentHistoryOptions, PaymentHistoryResult, PaymentResult, PaymentStatus, PaymentToken, SendBatchOverloads, SignRequest, SignerType, UseVolrPaymentApiReturn, VolrClient, VolrConfig, VolrProvider, VolrUser, useDepositListener, usePasskeyEnrollment, useVolr, useVolrLogin, useVolrPaymentApi } from '@volr/react';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
|
|
6
6
|
interface BrandingConfig {
|
|
@@ -198,6 +198,13 @@ declare const en: {
|
|
|
198
198
|
readonly noToken: "Don't have this token?";
|
|
199
199
|
readonly getOtherToken: "Deposit with another token";
|
|
200
200
|
};
|
|
201
|
+
readonly sign: {
|
|
202
|
+
readonly title: "Sign Request";
|
|
203
|
+
readonly description: "An application is requesting your signature. Please review the content below before signing.";
|
|
204
|
+
readonly confirm: "Sign";
|
|
205
|
+
readonly messageLabel: "Message";
|
|
206
|
+
readonly domainLabel: "Domain";
|
|
207
|
+
};
|
|
201
208
|
readonly errors: {
|
|
202
209
|
readonly webauthnNotSupported: "WebAuthn API is not supported";
|
|
203
210
|
readonly passkeyCreationFailed: "Failed to create passkey";
|