paymob-pixel-alpha 1.1.36 → 1.1.37
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/main.js +52 -36
- package/package.json +1 -1
package/main.js
CHANGED
|
@@ -70595,10 +70595,10 @@ function src_cardFormViewTwo_Card(props) {
|
|
|
70595
70595
|
name: "save_card",
|
|
70596
70596
|
customStyle: styling.input
|
|
70597
70597
|
})
|
|
70598
|
-
}), showInstantRefund && !isSplitPaymentsView && /*#__PURE__*/_jsx(InstantRefundOpt, {
|
|
70598
|
+
}), content, showInstantRefund && !isSplitPaymentsView && /*#__PURE__*/_jsx(InstantRefundOpt, {
|
|
70599
70599
|
onClick: handleInstantRefundToggle,
|
|
70600
70600
|
isLoading: loading
|
|
70601
|
-
}),
|
|
70601
|
+
}), SplitPaymentButton && /*#__PURE__*/_jsx("div", {
|
|
70602
70602
|
className: "mt-4",
|
|
70603
70603
|
children: /*#__PURE__*/_jsx(SplitPaymentButton, {})
|
|
70604
70604
|
}), isSplitPaymentsView && /*#__PURE__*/_jsxs("div", {
|
|
@@ -80527,6 +80527,7 @@ function src_StcPayElement({
|
|
|
80527
80527
|
|
|
80528
80528
|
|
|
80529
80529
|
function src_Knet(props) {
|
|
80530
|
+
var _customStyle$knetText, _customStyle$knetText2, _customStyle$knetText3, _customStyle$knetText4, _customStyle$knetText5, _customStyle$knetText6, _customStyle$knetText7, _customStyle$knetText8, _customStyle$knetText9, _customStyle$knetText0;
|
|
80530
80531
|
const {
|
|
80531
80532
|
t
|
|
80532
80533
|
} = src_useTranslation_useTranslation('knet');
|
|
@@ -80539,24 +80540,22 @@ function src_Knet(props) {
|
|
|
80539
80540
|
EquivalentAmount,
|
|
80540
80541
|
KnetCurrency
|
|
80541
80542
|
} = props;
|
|
80542
|
-
function formatNumber(
|
|
80543
|
-
return
|
|
80543
|
+
function formatNumber(val) {
|
|
80544
|
+
return val.toLocaleString(undefined, {
|
|
80544
80545
|
minimumFractionDigits: 2,
|
|
80545
80546
|
maximumFractionDigits: 2
|
|
80546
80547
|
});
|
|
80547
80548
|
}
|
|
80548
80549
|
const formattedAmount = formatNumber(Number(amount));
|
|
80549
80550
|
const formattedEquivalentAmount = formatNumber(Number(EquivalentAmount || amount));
|
|
80550
|
-
const displayCurrency = KnetCurrency || currency;
|
|
80551
80551
|
const displayAmount = formattedEquivalentAmount || formattedAmount;
|
|
80552
|
-
|
|
80552
|
+
const displayCurrency = KnetCurrency || currency;
|
|
80553
|
+
return /*#__PURE__*/(0,src_jsx_runtime.jsxs)(src_jsx_runtime.Fragment, {
|
|
80553
80554
|
children: [/*#__PURE__*/(0,src_jsx_runtime.jsxs)("div", {
|
|
80554
80555
|
className: "flex justify-between items-center mt-4 mb-4",
|
|
80555
80556
|
children: [/*#__PURE__*/(0,src_jsx_runtime.jsx)("p", {
|
|
80556
80557
|
className: "text-[#475467] font-inter text-sm font-medium",
|
|
80557
|
-
children: t("AMOUNT_ORDER"
|
|
80558
|
-
currency
|
|
80559
|
-
})
|
|
80558
|
+
children: `${(_customStyle$knetText = customStyle == null || (_customStyle$knetText2 = customStyle.knetText) == null ? void 0 : _customStyle$knetText2.AMOUNT_ORDER) != null ? _customStyle$knetText : t("AMOUNT_ORDER")} (${currency})`
|
|
80560
80559
|
}), /*#__PURE__*/(0,src_jsx_runtime.jsxs)("p", {
|
|
80561
80560
|
className: "text-[#101828] text-sm font-medium",
|
|
80562
80561
|
children: [currency, " ", formattedAmount]
|
|
@@ -80565,31 +80564,27 @@ function src_Knet(props) {
|
|
|
80565
80564
|
className: "flex justify-between items-center mb-4",
|
|
80566
80565
|
children: [/*#__PURE__*/(0,src_jsx_runtime.jsx)("p", {
|
|
80567
80566
|
className: "text-[#475467] font-inter text-sm font-medium",
|
|
80568
|
-
children: t("EQUIVALENT_AMOUNT"
|
|
80569
|
-
currency: displayCurrency
|
|
80570
|
-
})
|
|
80567
|
+
children: `${(_customStyle$knetText3 = customStyle == null || (_customStyle$knetText4 = customStyle.knetText) == null ? void 0 : _customStyle$knetText4.EQWIVALENT_AMOUNT) != null ? _customStyle$knetText3 : t("EQUIVALENT_AMOUNT")} (${displayCurrency})`
|
|
80571
80568
|
}), /*#__PURE__*/(0,src_jsx_runtime.jsxs)("p", {
|
|
80572
80569
|
className: "text-[#101828] text-sm font-medium",
|
|
80573
80570
|
children: [displayCurrency, " ", displayAmount]
|
|
80574
80571
|
})]
|
|
80575
|
-
}), /*#__PURE__*/(0,src_jsx_runtime.
|
|
80572
|
+
}), /*#__PURE__*/(0,src_jsx_runtime.jsxs)("p", {
|
|
80576
80573
|
className: "text-[#475467] font-inter text-sm leading-[18px] tracking-[0.16px] mb-2",
|
|
80577
|
-
children: t("TRANSACTION_PROCESS_CURRENCY", {
|
|
80574
|
+
children: [(_customStyle$knetText5 = customStyle == null || (_customStyle$knetText6 = customStyle.knetText) == null ? void 0 : _customStyle$knetText6.TRANSACTION_PROCEED) != null ? _customStyle$knetText5 : t("TRANSACTION_PROCESS_CURRENCY", {
|
|
80578
80575
|
currency: displayCurrency
|
|
80579
|
-
})
|
|
80576
|
+
}), "."]
|
|
80580
80577
|
}), /*#__PURE__*/(0,src_jsx_runtime.jsx)(src_Button_Button, {
|
|
80581
80578
|
id: "pay-button",
|
|
80582
|
-
label: t("PAY"
|
|
80583
|
-
currency: displayCurrency,
|
|
80584
|
-
amount: displayAmount
|
|
80585
|
-
}),
|
|
80579
|
+
label: `${(_customStyle$knetText7 = customStyle == null || (_customStyle$knetText8 = customStyle.knetText) == null ? void 0 : _customStyle$knetText8.PAY_KNET_BUTTON) != null ? _customStyle$knetText7 : t("PAY")} ${displayCurrency} ${displayAmount}`,
|
|
80586
80580
|
fullWidth: true,
|
|
80587
80581
|
color: 'primary',
|
|
80588
80582
|
customStyle: customStyle == null ? void 0 : customStyle.button,
|
|
80589
|
-
onClick: onPaySubmit
|
|
80583
|
+
onClick: onPaySubmit,
|
|
80584
|
+
disabled: loading
|
|
80590
80585
|
}), /*#__PURE__*/(0,src_jsx_runtime.jsx)("p", {
|
|
80591
80586
|
className: "h-4 text-[#344054] font-inter text-sm font-medium mt-6",
|
|
80592
|
-
children: t("REDIRECT_KNET_PAGE")
|
|
80587
|
+
children: (_customStyle$knetText9 = customStyle == null || (_customStyle$knetText0 = customStyle.knetText) == null ? void 0 : _customStyle$knetText0.KNET_REDIRECT) != null ? _customStyle$knetText9 : t("REDIRECT_KNET_PAGE")
|
|
80593
80588
|
})]
|
|
80594
80589
|
});
|
|
80595
80590
|
}
|
|
@@ -80670,6 +80665,7 @@ const src_isKnetApplePaySupported = () => {
|
|
|
80670
80665
|
return false;
|
|
80671
80666
|
};
|
|
80672
80667
|
function src_KnetApplePay(props) {
|
|
80668
|
+
var _customStyle$knetAppl, _customStyle$knetAppl2, _customStyle$knetAppl3, _customStyle$knetAppl4, _customStyle$knetAppl5, _customStyle$knetAppl6;
|
|
80673
80669
|
const {
|
|
80674
80670
|
countryCode,
|
|
80675
80671
|
currency,
|
|
@@ -80818,9 +80814,7 @@ function src_KnetApplePay(props) {
|
|
|
80818
80814
|
className: "flex justify-between items-center mt-4 mb-4",
|
|
80819
80815
|
children: [/*#__PURE__*/(0,src_jsx_runtime.jsx)("p", {
|
|
80820
80816
|
className: "text-[#475467] font-inter text-sm font-medium leading-[24px] tracking-[0.16px]",
|
|
80821
|
-
children: t(
|
|
80822
|
-
currency
|
|
80823
|
-
})
|
|
80817
|
+
children: `${(_customStyle$knetAppl = customStyle == null || (_customStyle$knetAppl2 = customStyle.knetApplePayText) == null ? void 0 : _customStyle$knetAppl2.AMOUNT_ORDER) != null ? _customStyle$knetAppl : t("AMOUNT_ORDER")} (${currency})`
|
|
80824
80818
|
}), /*#__PURE__*/(0,src_jsx_runtime.jsxs)("p", {
|
|
80825
80819
|
className: "text-[#101828] text-sm font-medium",
|
|
80826
80820
|
children: [currency, " ", formattedAmount]
|
|
@@ -80829,18 +80823,16 @@ function src_KnetApplePay(props) {
|
|
|
80829
80823
|
className: "flex justify-between items-center mb-4",
|
|
80830
80824
|
children: [/*#__PURE__*/(0,src_jsx_runtime.jsx)("p", {
|
|
80831
80825
|
className: "text-[#475467] font-inter text-sm font-medium leading-[24px] tracking-[0.16px]",
|
|
80832
|
-
children: t(
|
|
80833
|
-
currency: displayCurrency
|
|
80834
|
-
})
|
|
80826
|
+
children: `${(_customStyle$knetAppl3 = customStyle == null || (_customStyle$knetAppl4 = customStyle.knetApplePayText) == null ? void 0 : _customStyle$knetAppl4.EQWIVALENT_AMOUNT) != null ? _customStyle$knetAppl3 : t("EQUIVALENT_AMOUNT")} (${displayCurrency})`
|
|
80835
80827
|
}), /*#__PURE__*/(0,src_jsx_runtime.jsxs)("p", {
|
|
80836
80828
|
className: "text-[#101828] text-sm font-medium",
|
|
80837
80829
|
children: [displayCurrency, " ", displayAmount]
|
|
80838
80830
|
})]
|
|
80839
|
-
}), /*#__PURE__*/(0,src_jsx_runtime.
|
|
80831
|
+
}), /*#__PURE__*/(0,src_jsx_runtime.jsxs)("p", {
|
|
80840
80832
|
className: "text-[#475467] font-inter text-sm leading-[18px] tracking-[0.16px] mb-6",
|
|
80841
|
-
children: t(
|
|
80833
|
+
children: [(_customStyle$knetAppl5 = customStyle == null || (_customStyle$knetAppl6 = customStyle.knetApplePayText) == null ? void 0 : _customStyle$knetAppl6.TRANSACTION_PROCEED) != null ? _customStyle$knetAppl5 : t("TRANSACTION_PROCESS_CURRENCY", {
|
|
80842
80834
|
currency: displayCurrency
|
|
80843
|
-
})
|
|
80835
|
+
}), "."]
|
|
80844
80836
|
}), /*#__PURE__*/(0,src_jsx_runtime.jsx)(src_Button_Button, {
|
|
80845
80837
|
id: "apple-pay-button",
|
|
80846
80838
|
icon: src_apple_pay_namespaceObject,
|
|
@@ -82722,7 +82714,6 @@ function src_Knet_KnetElement({
|
|
|
82722
82714
|
KnetEquivalentAmount = src_CURRENCIES_WITH_THOUSAND_DIVISOR.includes(KnetCurrency) ? KnetEquivalentAmountCents / 1000 : KnetEquivalentAmountCents / 100;
|
|
82723
82715
|
}
|
|
82724
82716
|
const amountInCents = src_getAmountInCentsBasedOnCurrency_getAmountInCentsBasedOnCurrency(amount, currency);
|
|
82725
|
-
console.log("🚀 ~ KnetElement ~ amountInCents:", amountInCents);
|
|
82726
82717
|
const handlePay = async () => {
|
|
82727
82718
|
try {
|
|
82728
82719
|
var _res$data, _res$data2;
|
|
@@ -83250,6 +83241,7 @@ const src_PaymentsList = /*#__PURE__*/(0,src_react.forwardRef)((props, ref) => {
|
|
|
83250
83241
|
/* harmony default export */ const src_List = (src_PaymentsList);
|
|
83251
83242
|
;// ./src/utils/getStyles.ts
|
|
83252
83243
|
function src_getStyles_getStyles(customStyle) {
|
|
83244
|
+
var _customStyle$Payment_, _customStyle$Payment_2, _customStyle$Payment_3, _customStyle$Payment_4, _customStyle$Knet_Tex, _customStyle$Knet_Tex2, _customStyle$Knet_Tex3, _customStyle$Knet_Tex4, _customStyle$Knet_Tex5, _customStyle$Knet_App, _customStyle$Knet_App2, _customStyle$Knet_App3;
|
|
83253
83245
|
const fontFamily = Object.assign({
|
|
83254
83246
|
fontFamily: 'Gotham'
|
|
83255
83247
|
}, (customStyle == null ? void 0 : customStyle.Font_Family) && {
|
|
@@ -83367,6 +83359,26 @@ function src_getStyles_getStyles(customStyle) {
|
|
|
83367
83359
|
const textColorForDiscountValidationMessage = Object.assign({}, (customStyle == null ? void 0 : customStyle.Text_Color_For_Discount_Validation_Message) && {
|
|
83368
83360
|
color: customStyle == null ? void 0 : customStyle.Text_Color_For_Discount_Validation_Message
|
|
83369
83361
|
});
|
|
83362
|
+
const paymentMethodsText = {
|
|
83363
|
+
label: customStyle == null || (_customStyle$Payment_ = customStyle.Payment_Methods_Text) == null ? void 0 : _customStyle$Payment_.Label,
|
|
83364
|
+
methodNames: {
|
|
83365
|
+
CARD: customStyle == null || (_customStyle$Payment_2 = customStyle.Payment_Methods_Text) == null || (_customStyle$Payment_2 = _customStyle$Payment_2.Payment_Method_Name) == null ? void 0 : _customStyle$Payment_2.CARD,
|
|
83366
|
+
KNET: customStyle == null || (_customStyle$Payment_3 = customStyle.Payment_Methods_Text) == null || (_customStyle$Payment_3 = _customStyle$Payment_3.Payment_Method_Name) == null ? void 0 : _customStyle$Payment_3.KNET,
|
|
83367
|
+
KNET_APPLE_PAY: customStyle == null || (_customStyle$Payment_4 = customStyle.Payment_Methods_Text) == null || (_customStyle$Payment_4 = _customStyle$Payment_4.Payment_Method_Name) == null ? void 0 : _customStyle$Payment_4.KNET_APPLE_PAY
|
|
83368
|
+
}
|
|
83369
|
+
};
|
|
83370
|
+
const knetText = {
|
|
83371
|
+
AMOUNT_ORDER: customStyle == null || (_customStyle$Knet_Tex = customStyle.Knet_Text) == null ? void 0 : _customStyle$Knet_Tex.AMOUNT_ORDER,
|
|
83372
|
+
EQWIVALENT_AMOUNT: customStyle == null || (_customStyle$Knet_Tex2 = customStyle.Knet_Text) == null ? void 0 : _customStyle$Knet_Tex2.EQWIVALENT_AMOUNT,
|
|
83373
|
+
TRANSACTION_PROCEED: customStyle == null || (_customStyle$Knet_Tex3 = customStyle.Knet_Text) == null ? void 0 : _customStyle$Knet_Tex3.TRANSACTION_PROCEED,
|
|
83374
|
+
KNET_REDIRECT: customStyle == null || (_customStyle$Knet_Tex4 = customStyle.Knet_Text) == null ? void 0 : _customStyle$Knet_Tex4.KNET_REDIRECT,
|
|
83375
|
+
PAY_KNET_BUTTON: customStyle == null || (_customStyle$Knet_Tex5 = customStyle.Knet_Text) == null ? void 0 : _customStyle$Knet_Tex5.PAY_KNET_BUTTON
|
|
83376
|
+
};
|
|
83377
|
+
const knetApplePayText = {
|
|
83378
|
+
AMOUNT_ORDER: customStyle == null || (_customStyle$Knet_App = customStyle.Knet_Apple_Pay_Text) == null ? void 0 : _customStyle$Knet_App.AMOUNT_ORDER,
|
|
83379
|
+
EQWIVALENT_AMOUNT: customStyle == null || (_customStyle$Knet_App2 = customStyle.Knet_Apple_Pay_Text) == null ? void 0 : _customStyle$Knet_App2.EQWIVALENT_AMOUNT,
|
|
83380
|
+
TRANSACTION_PROCEED: customStyle == null || (_customStyle$Knet_App3 = customStyle.Knet_Apple_Pay_Text) == null ? void 0 : _customStyle$Knet_App3.TRANSACTION_PROCEED
|
|
83381
|
+
};
|
|
83370
83382
|
return {
|
|
83371
83383
|
container: Object.assign({}, colorContainer, fontFamily, verticalSpacingBetweenComponents, containerPadding, widthOfContainer, textDirection),
|
|
83372
83384
|
tabs: Object.assign({}, fontFamily, radiusBorder),
|
|
@@ -83392,7 +83404,10 @@ function src_getStyles_getStyles(customStyle) {
|
|
|
83392
83404
|
buttonText: Object.assign({}, customStyle == null ? void 0 : customStyle.Button_Text),
|
|
83393
83405
|
hintText: Object.assign({}, customStyle == null ? void 0 : customStyle.Hint_Text),
|
|
83394
83406
|
hideCardIcons: customStyle == null ? void 0 : customStyle.HideCardIcons,
|
|
83395
|
-
hideCardLabel: customStyle == null ? void 0 : customStyle.HideCardLabel
|
|
83407
|
+
hideCardLabel: customStyle == null ? void 0 : customStyle.HideCardLabel,
|
|
83408
|
+
paymentMethodsText,
|
|
83409
|
+
knetText,
|
|
83410
|
+
knetApplePayText
|
|
83396
83411
|
};
|
|
83397
83412
|
}
|
|
83398
83413
|
;// ./src/components/Payments/index.tsx
|
|
@@ -86773,7 +86788,7 @@ const src_flash_contact_en_namespaceObject = /*#__PURE__*/JSON.parse('{"ERR_SOME
|
|
|
86773
86788
|
;// ../../localization/apps/flash/contact/ur.json
|
|
86774
86789
|
const src_flash_contact_ur_namespaceObject = {};
|
|
86775
86790
|
;// ../../localization/apps/flash/payments/en.json
|
|
86776
|
-
const src_payments_en_namespaceObject = /*#__PURE__*/JSON.parse('{"LOADING_MODAL_MESSAGE":"Loading...","FIRST_CARD":"First Card","SECOND_CARD":"Second Card","THIRD_CARD":"Third Card","CLICK_BTN":"Click here to Proceed","SPOTII":"Spotii","TABBY":"Tabby","POSTPAY":"Postpay","STCPAY":"STC Pay","CAGG":"Kiosk","SYMPL":"Sympl","PREMIUM":"Premium","FORSA":"Forsa","SOUHOOLAV2":"Souhoola","UIG":"Wallet","UIG_FULL":"Wallet","VALU":"ValU","AMAN":"Aman","NIFT":"NIFT","EASYPAISA":"Easy Paisa","EASYPAISADIRECT":"Easy Paisa","JAZZCASH":"Jazz Cash","TAMARA":"Tamara","SOUHOOLAV3":"Souhoola","PREMIUM6":"Premium Card","SYMPL_V2":"Sympl","TRU":"TRU","AMANV3":"Aman","CONTACT":"Contact","OMANNET":"Oman Net","SPARK_IT":"Spark IT","PAYPAL":"Paypal","MIGS":"Card","MIGS_FULL":"Card","LUCKY_INSTALLMENT":"Lucky Installment","INSTALLMENT":"Bank Installments","Apple Pay":"Apple Pay","Google Pay":"Google Pay","MID_TAKSEET":"Mogo","HALAN":"Halan","INSTAPAY":"InstaPay","DIGITAL_WALLET":"Digital Wallet","Pay Later":"Pay Later","SEVEN":"Seven","SAVED_PAYMENTS_TITLE":"Saved payment methods","KLIVVR":"Klivvr","SELECT":"Select","KNET":"Knet","KNET-APPLE-PAY":"Knet Apple Pay","CARD":"Card"}');
|
|
86791
|
+
const src_payments_en_namespaceObject = /*#__PURE__*/JSON.parse('{"LOADING_MODAL_MESSAGE":"Loading...","FIRST_CARD":"First Card","SECOND_CARD":"Second Card","THIRD_CARD":"Third Card","CLICK_BTN":"Click here to Proceed","SPOTII":"Spotii","TABBY":"Tabby","POSTPAY":"Postpay","STCPAY":"STC Pay","CAGG":"Kiosk","SYMPL":"Sympl","PREMIUM":"Premium","FORSA":"Forsa","SOUHOOLAV2":"Souhoola","UIG":"Wallet","UIG_FULL":"Wallet","VALU":"ValU","AMAN":"Aman","NIFT":"NIFT","EASYPAISA":"Easy Paisa","EASYPAISADIRECT":"Easy Paisa","JAZZCASH":"Jazz Cash","TAMARA":"Tamara","SOUHOOLAV3":"Souhoola","PREMIUM6":"Premium Card","SYMPL_V2":"Sympl","TRU":"TRU","AMANV3":"Aman","CONTACT":"Contact","OMANNET":"Oman Net","SPARK_IT":"Spark IT","PAYPAL":"Paypal","MIGS":"Card","MIGS_FULL":"Card","LUCKY_INSTALLMENT":"Lucky Installment","INSTALLMENT":"Bank Installments","Apple Pay":"Apple Pay","Google Pay":"Google Pay","MID_TAKSEET":"Mogo","HALAN":"Halan","INSTAPAY":"InstaPay","DIGITAL_WALLET":"Digital Wallet","Pay Later":"Pay Later","SEVEN":"Seven","SAVED_PAYMENTS_TITLE":"Saved payment methods","KLIVVR":"Klivvr","SELECT":"Select","KNET":"Knet Card","KNET-APPLE-PAY":"Knet Apple Pay","CARD":"Card"}');
|
|
86777
86792
|
;// ../../localization/apps/flash/payments/ar.json
|
|
86778
86793
|
const src_payments_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"FIRST_CARD":"البطاقة الأولى","SECOND_CARD":"البطاقة الثانية","THIRD_CARD":"البطاقة الثالثة","LOADING_MODAL_MESSAGE":"جارٍ التحميل...","CLICK_BTN":"اضغط هنا للمتابعة","SPOTII":"سبوتي","TABBY":"تابي","POSTPAY":"بوست باي","STCPAY":"إس تي سي باي","CAGG":"كشك","SYMPL":"سيمبل","PREMIUM":"بريميوم","FORSA":"فرصة","SOUHOOLAV2":"سهولة","UIG":"محفظة","UIG_FULL":"المحفظة","VALU":"فاليو","AMAN":"أمان","NIFT":"نيفت","EASYPAISA":"إيزي بايسا","EASYPAISADIRECT":"إيزي بايسا","JAZZCASH":"جاز كاش","TAMARA":"تمارا","SOUHOOLAV3":"سهولة","PREMIUM6":"بطاقة بريميوم","SYMPL_V2":"سيمبل","TRU":"ترو","AMANV3":"أمان","CONTACT":"كونتكت","OMANNET":"عمان نت","SPARK_IT":"سبارك آي تي","PAYPAL":"بايبال","MIGS":"بطاقة","MIGS_FULL":"البطاقة","LUCKY_INSTALLMENT":"تقسيط لاكي","INSTALLMENT":"تقسيط بنكي","Apple Pay":"آبل باي","Google Pay":"جوجل باي","MID_TAKSEET":"موغو","HALAN":"حالاً","INSTAPAY":"إنستا باي","DIGITAL_WALLET":"محفظة رقمية","Pay Later":"ادفع لاحقًا","SEVEN":"Seven","SAVED_PAYMENTS_TITLE":"Saved payment methods","KLIVVR":"Klivvr","SELECT":"اختر","KNET":"Knet","KNET-APPLE-PAY":"Knet Apple Pay","CARD":"Card"}');
|
|
86779
86794
|
;// ../../localization/apps/flash/payments/ur.json
|
|
@@ -86799,13 +86814,13 @@ const src_digital_wallet_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"REDIREC
|
|
|
86799
86814
|
;// ../../localization/libs/knet/ar.json
|
|
86800
86815
|
const src_knet_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"AMOUNT_ORDER":"قيمة الطلب ({{currency}})","EQUIVALENT_AMOUNT":"المبلغ المكافئ ({{currency}})","TRANSACTION_PROCESS_CURRENCY":"ستتم معالجة المعاملة بعملة {{currency}}.","REDIRECT_KNET_PAGE":"سيتم تحويلك إلى صفحة K-NET الآمنة لإتمام عملية الدفع.","PAY":"ادفع {{currency}} {{amount}}"}');
|
|
86801
86816
|
;// ../../localization/libs/knet/en.json
|
|
86802
|
-
const src_knet_en_namespaceObject = /*#__PURE__*/JSON.parse('{"AMOUNT_ORDER":"Amount order
|
|
86817
|
+
const src_knet_en_namespaceObject = /*#__PURE__*/JSON.parse('{"AMOUNT_ORDER":"Amount order ","EQUIVALENT_AMOUNT":"Equivalent amount ","TRANSACTION_PROCESS_CURRENCY":"Transaction will be processed in {{currency}} currency.","REDIRECT_KNET_PAGE":"You will be redirected to K-NET secure page to complete your payment.","PAY":"Pay "}');
|
|
86803
86818
|
;// ../../localization/libs/knet/ur.json
|
|
86804
86819
|
const src_knet_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"AMOUNT_ORDER":"Amount order ({{currency}})","EQUIVALENT_AMOUNT":"Equivalent amount ({{currency}})","TRANSACTION_PROCESS_CURRENCY":"Transaction will be processed in {{currency}} currency.","REDIRECT_KNET_PAGE":"You will be redirected to K-NET secure page to complete your payment."}');
|
|
86805
86820
|
;// ../../localization/libs/knet-apple-pay/ar.json
|
|
86806
86821
|
const src_knet_apple_pay_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"AMOUNT_ORDER":"قيمة الطلب ({{currency}})","EQUIVALENT_AMOUNT":"المبلغ المكافئ ({{currency}})","TRANSACTION_PROCESS_CURRENCY":"ستتم معالجة المعاملة بعملة {{currency}}."}');
|
|
86807
86822
|
;// ../../localization/libs/knet-apple-pay/en.json
|
|
86808
|
-
const src_knet_apple_pay_en_namespaceObject = /*#__PURE__*/JSON.parse('{"AMOUNT_ORDER":"Amount order
|
|
86823
|
+
const src_knet_apple_pay_en_namespaceObject = /*#__PURE__*/JSON.parse('{"AMOUNT_ORDER":"Amount order ","EQUIVALENT_AMOUNT":"Equivalent amount ","TRANSACTION_PROCESS_CURRENCY":"Transaction will be processed in {{currency}} currency."}');
|
|
86809
86824
|
;// ../../localization/libs/knet-apple-pay/ur.json
|
|
86810
86825
|
const src_knet_apple_pay_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"AMOUNT_ORDER":"Amount order ({{currency}})","EQUIVALENT_AMOUNT":"Equivalent amount ({{currency}})","TRANSACTION_PROCESS_CURRENCY":"Transaction will be processed in {{currency}} currency."}');
|
|
86811
86826
|
;// ../../localization/apps/flash/split-payments/en.json
|
|
@@ -87485,7 +87500,8 @@ class src_Pixel_0 {
|
|
|
87485
87500
|
onCardValidationChanged: this.handleCardValidationChanged.bind(this)
|
|
87486
87501
|
}, {
|
|
87487
87502
|
integrationType: this._integrationType,
|
|
87488
|
-
discounts: this._discounts
|
|
87503
|
+
discounts: this._discounts,
|
|
87504
|
+
viewMode: this._options.viewMode
|
|
87489
87505
|
}), Date.now())
|
|
87490
87506
|
})
|
|
87491
87507
|
}));
|