@unifold/connect-react 0.1.36 → 0.1.38
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.d.mts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +822 -674
- package/dist/index.mjs +828 -680
- package/dist/styles-base.css +1 -1
- package/dist/styles.css +1 -1
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -31,6 +31,20 @@ interface UnifoldConnectProviderConfig {
|
|
|
31
31
|
components?: ComponentConfig;
|
|
32
32
|
/** Default `initialScreen` for `beginDeposit()` when the call omits it */
|
|
33
33
|
defaultInitialScreen?: DepositModalInitialScreen;
|
|
34
|
+
/** Main menu — Transfer Crypto row title. @default `"Transfer Crypto"` (from package i18n when omitted) */
|
|
35
|
+
transferCryptoTitle?: string;
|
|
36
|
+
/** Main menu — Deposit with Card row title. @default `"Deposit with Card"` */
|
|
37
|
+
depositWithCardTitle?: string;
|
|
38
|
+
/** Main menu — Pay with Exchange row title. @default `"Pay with Exchange"` */
|
|
39
|
+
payWithExchangeTitle?: string;
|
|
40
|
+
/** Main menu — Deposit Tracker row title. @default `"Deposit Tracker"` */
|
|
41
|
+
depositTrackerTitle?: string;
|
|
42
|
+
/** Main menu — Deposit Tracker row description. @default `"Track your deposit progress"` */
|
|
43
|
+
depositTrackerSubTitle?: string;
|
|
44
|
+
/** Deposit with Card onramp: hide You use / You buy / You receive. @default false */
|
|
45
|
+
hideDepositFlowInfo?: boolean;
|
|
46
|
+
/** Deposit with Card onramp: hide wallet address disclaimer. @default false */
|
|
47
|
+
hideDisplayDescription?: boolean;
|
|
34
48
|
};
|
|
35
49
|
}
|
|
36
50
|
interface DepositResult {
|
package/dist/index.d.ts
CHANGED
|
@@ -31,6 +31,20 @@ interface UnifoldConnectProviderConfig {
|
|
|
31
31
|
components?: ComponentConfig;
|
|
32
32
|
/** Default `initialScreen` for `beginDeposit()` when the call omits it */
|
|
33
33
|
defaultInitialScreen?: DepositModalInitialScreen;
|
|
34
|
+
/** Main menu — Transfer Crypto row title. @default `"Transfer Crypto"` (from package i18n when omitted) */
|
|
35
|
+
transferCryptoTitle?: string;
|
|
36
|
+
/** Main menu — Deposit with Card row title. @default `"Deposit with Card"` */
|
|
37
|
+
depositWithCardTitle?: string;
|
|
38
|
+
/** Main menu — Pay with Exchange row title. @default `"Pay with Exchange"` */
|
|
39
|
+
payWithExchangeTitle?: string;
|
|
40
|
+
/** Main menu — Deposit Tracker row title. @default `"Deposit Tracker"` */
|
|
41
|
+
depositTrackerTitle?: string;
|
|
42
|
+
/** Main menu — Deposit Tracker row description. @default `"Track your deposit progress"` */
|
|
43
|
+
depositTrackerSubTitle?: string;
|
|
44
|
+
/** Deposit with Card onramp: hide You use / You buy / You receive. @default false */
|
|
45
|
+
hideDepositFlowInfo?: boolean;
|
|
46
|
+
/** Deposit with Card onramp: hide wallet address disclaimer. @default false */
|
|
47
|
+
hideDisplayDescription?: boolean;
|
|
34
48
|
};
|
|
35
49
|
}
|
|
36
50
|
interface DepositResult {
|