@fractalpay/fractalpay-next-test 0.0.37 → 0.0.39
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.ts +3 -1
- package/dist/index.js +251 -122
- package/dist/index.js.map +1 -1
- package/next.config.ts +1 -0
- package/package.json +8 -3
- package/next-env.d.ts +0 -6
package/dist/index.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ type Props$6 = {
|
|
|
50
50
|
pass_fee?: boolean;
|
|
51
51
|
isReader?: boolean;
|
|
52
52
|
sessionToken?: string;
|
|
53
|
+
bankFeeAmount?: string;
|
|
53
54
|
};
|
|
54
55
|
declare function GetPaymentPage(props: Props$6): React.JSX.Element;
|
|
55
56
|
|
|
@@ -134,8 +135,9 @@ type Props$1 = {
|
|
|
134
135
|
isPartial?: boolean;
|
|
135
136
|
partialRef?: string;
|
|
136
137
|
customCSS?: string;
|
|
138
|
+
disableSubmitBtn?: boolean;
|
|
137
139
|
};
|
|
138
|
-
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, customCSS }: Props$1) => React.JSX.Element;
|
|
140
|
+
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, customCSS, disableSubmitBtn }: Props$1) => React.JSX.Element;
|
|
139
141
|
|
|
140
142
|
type Props = {
|
|
141
143
|
session_token: string;
|