@flopay/react 1.4.13 → 1.4.14
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 +1 -1
- package/dist/index.cjs +9 -9
- package/dist/index.d.cts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.mjs +9 -9
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ function CheckoutPage() {
|
|
|
60
60
|
`FloPayCheckout` supports three checkout modes matching the billing API's `checkoutMode` field:
|
|
61
61
|
|
|
62
62
|
- **`full`** (default) — Shows the hosted card widget plus supported non-card methods.
|
|
63
|
-
- **`confirm`** — Hides the payment form and shows a "Confirm Purchase" button. Uses a saved payment method on the backend.
|
|
63
|
+
- **`confirm`** — Hides the payment form and shows a "Confirm Purchase" button. Uses a saved payment method on the backend. When the saved card needs re-authentication, the 3DS challenge runs in place and the same payment attempt completes — the button is not replaced by the card form.
|
|
64
64
|
- **`auto`** — Auto-submits with a saved payment method after the session loads. Falls back to `full` mode on failure.
|
|
65
65
|
|
|
66
66
|
```tsx
|