@fractalpay/fractalpay-next-dev 0.0.158 → 0.0.160
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +306 -30
- package/dist/index.mjs +306 -30
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -123,7 +123,9 @@ type Props = {
|
|
|
123
123
|
autoTrigger: boolean;
|
|
124
124
|
isPartial?: boolean;
|
|
125
125
|
partialRef?: string;
|
|
126
|
+
onSubmit?: (submitFn: () => void) => void;
|
|
127
|
+
onLoad: boolean;
|
|
126
128
|
};
|
|
127
|
-
declare const PaymentWidget: ({ amount, bankAmount, submitBtnText, session_token, customerId, callback, merchantName, isPreAuth, surcharge, submitBtnClass, submitBtnIcon, isRequest, pass_fee, pass_fee_amount, require3ds, autoTrigger, isPartial, bankSurcharge, partialRef }: Props) => React.JSX.Element;
|
|
129
|
+
declare const PaymentWidget: ({ amount, bankAmount, submitBtnText, session_token, customerId, callback, merchantName, isPreAuth, surcharge, submitBtnClass, submitBtnIcon, isRequest, pass_fee, pass_fee_amount, require3ds, autoTrigger, isPartial, bankSurcharge, partialRef, onSubmit, onLoad }: Props) => React.JSX.Element;
|
|
128
130
|
|
|
129
131
|
export { AddCardEasyPay as AddCard, CardOnFile, GetPaymentPage, PartialPayment, PaymentWidget, PreAuthPayment, RequestPayment, RequestPreAuthPayment };
|
package/dist/index.d.ts
CHANGED
|
@@ -123,7 +123,9 @@ type Props = {
|
|
|
123
123
|
autoTrigger: boolean;
|
|
124
124
|
isPartial?: boolean;
|
|
125
125
|
partialRef?: string;
|
|
126
|
+
onSubmit?: (submitFn: () => void) => void;
|
|
127
|
+
onLoad: boolean;
|
|
126
128
|
};
|
|
127
|
-
declare const PaymentWidget: ({ amount, bankAmount, submitBtnText, session_token, customerId, callback, merchantName, isPreAuth, surcharge, submitBtnClass, submitBtnIcon, isRequest, pass_fee, pass_fee_amount, require3ds, autoTrigger, isPartial, bankSurcharge, partialRef }: Props) => React.JSX.Element;
|
|
129
|
+
declare const PaymentWidget: ({ amount, bankAmount, submitBtnText, session_token, customerId, callback, merchantName, isPreAuth, surcharge, submitBtnClass, submitBtnIcon, isRequest, pass_fee, pass_fee_amount, require3ds, autoTrigger, isPartial, bankSurcharge, partialRef, onSubmit, onLoad }: Props) => React.JSX.Element;
|
|
128
130
|
|
|
129
131
|
export { AddCardEasyPay as AddCard, CardOnFile, GetPaymentPage, PartialPayment, PaymentWidget, PreAuthPayment, RequestPayment, RequestPreAuthPayment };
|