@unifold/ui-react 0.1.68-beta.2 → 0.1.68
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +990 -889
- package/dist/index.mjs +903 -805
- package/dist/styles-base.css +1 -1
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -211,6 +211,12 @@ interface DepositModalProps {
|
|
|
211
211
|
enableConnectExchange?: boolean;
|
|
212
212
|
/** Enable "Pay with Cash App" option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? true. */
|
|
213
213
|
enableCashApp?: boolean;
|
|
214
|
+
/**
|
|
215
|
+
* Enable the Stripe "Pay with Link" option. Overrides the dashboard default.
|
|
216
|
+
* Resolves as flag ?? dashboard `stripe_link.enabled` ?? false (Link is
|
|
217
|
+
* opt-in, unlike most methods). The platform `stripe_link.is_hidden` hard hide
|
|
218
|
+
* (US-only availability) always wins regardless of this flag.
|
|
219
|
+
*/
|
|
214
220
|
enableStripeLink?: boolean;
|
|
215
221
|
/**
|
|
216
222
|
* Email for the host platform's signed-in user. Consolidated pre-fill / pre-trust
|
package/dist/index.d.ts
CHANGED
|
@@ -211,6 +211,12 @@ interface DepositModalProps {
|
|
|
211
211
|
enableConnectExchange?: boolean;
|
|
212
212
|
/** Enable "Pay with Cash App" option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? true. */
|
|
213
213
|
enableCashApp?: boolean;
|
|
214
|
+
/**
|
|
215
|
+
* Enable the Stripe "Pay with Link" option. Overrides the dashboard default.
|
|
216
|
+
* Resolves as flag ?? dashboard `stripe_link.enabled` ?? false (Link is
|
|
217
|
+
* opt-in, unlike most methods). The platform `stripe_link.is_hidden` hard hide
|
|
218
|
+
* (US-only availability) always wins regardless of this flag.
|
|
219
|
+
*/
|
|
214
220
|
enableStripeLink?: boolean;
|
|
215
221
|
/**
|
|
216
222
|
* Email for the host platform's signed-in user. Consolidated pre-fill / pre-trust
|