paymob-pixel-alpha 1.1.23 → 1.1.24
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
CHANGED
|
@@ -136,99 +136,6 @@ if (true) {
|
|
|
136
136
|
} else {}
|
|
137
137
|
|
|
138
138
|
|
|
139
|
-
/***/ }),
|
|
140
|
-
|
|
141
|
-
/***/ 1435:
|
|
142
|
-
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
143
|
-
|
|
144
|
-
"use strict";
|
|
145
|
-
/**
|
|
146
|
-
* @license React
|
|
147
|
-
* use-sync-external-store-shim/with-selector.production.js
|
|
148
|
-
*
|
|
149
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
150
|
-
*
|
|
151
|
-
* This source code is licensed under the MIT license found in the
|
|
152
|
-
* LICENSE file in the root directory of this source tree.
|
|
153
|
-
*/
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
var React = __webpack_require__(4041),
|
|
157
|
-
shim = __webpack_require__(8139);
|
|
158
|
-
function is(x, y) {
|
|
159
|
-
return (x === y && (0 !== x || 1 / x === 1 / y)) || (x !== x && y !== y);
|
|
160
|
-
}
|
|
161
|
-
var objectIs = "function" === typeof Object.is ? Object.is : is,
|
|
162
|
-
useSyncExternalStore = shim.useSyncExternalStore,
|
|
163
|
-
useRef = React.useRef,
|
|
164
|
-
useEffect = React.useEffect,
|
|
165
|
-
useMemo = React.useMemo,
|
|
166
|
-
useDebugValue = React.useDebugValue;
|
|
167
|
-
exports.useSyncExternalStoreWithSelector = function (
|
|
168
|
-
subscribe,
|
|
169
|
-
getSnapshot,
|
|
170
|
-
getServerSnapshot,
|
|
171
|
-
selector,
|
|
172
|
-
isEqual
|
|
173
|
-
) {
|
|
174
|
-
var instRef = useRef(null);
|
|
175
|
-
if (null === instRef.current) {
|
|
176
|
-
var inst = { hasValue: !1, value: null };
|
|
177
|
-
instRef.current = inst;
|
|
178
|
-
} else inst = instRef.current;
|
|
179
|
-
instRef = useMemo(
|
|
180
|
-
function () {
|
|
181
|
-
function memoizedSelector(nextSnapshot) {
|
|
182
|
-
if (!hasMemo) {
|
|
183
|
-
hasMemo = !0;
|
|
184
|
-
memoizedSnapshot = nextSnapshot;
|
|
185
|
-
nextSnapshot = selector(nextSnapshot);
|
|
186
|
-
if (void 0 !== isEqual && inst.hasValue) {
|
|
187
|
-
var currentSelection = inst.value;
|
|
188
|
-
if (isEqual(currentSelection, nextSnapshot))
|
|
189
|
-
return (memoizedSelection = currentSelection);
|
|
190
|
-
}
|
|
191
|
-
return (memoizedSelection = nextSnapshot);
|
|
192
|
-
}
|
|
193
|
-
currentSelection = memoizedSelection;
|
|
194
|
-
if (objectIs(memoizedSnapshot, nextSnapshot)) return currentSelection;
|
|
195
|
-
var nextSelection = selector(nextSnapshot);
|
|
196
|
-
if (void 0 !== isEqual && isEqual(currentSelection, nextSelection))
|
|
197
|
-
return (memoizedSnapshot = nextSnapshot), currentSelection;
|
|
198
|
-
memoizedSnapshot = nextSnapshot;
|
|
199
|
-
return (memoizedSelection = nextSelection);
|
|
200
|
-
}
|
|
201
|
-
var hasMemo = !1,
|
|
202
|
-
memoizedSnapshot,
|
|
203
|
-
memoizedSelection,
|
|
204
|
-
maybeGetServerSnapshot =
|
|
205
|
-
void 0 === getServerSnapshot ? null : getServerSnapshot;
|
|
206
|
-
return [
|
|
207
|
-
function () {
|
|
208
|
-
return memoizedSelector(getSnapshot());
|
|
209
|
-
},
|
|
210
|
-
null === maybeGetServerSnapshot
|
|
211
|
-
? void 0
|
|
212
|
-
: function () {
|
|
213
|
-
return memoizedSelector(maybeGetServerSnapshot());
|
|
214
|
-
}
|
|
215
|
-
];
|
|
216
|
-
},
|
|
217
|
-
[getSnapshot, getServerSnapshot, selector, isEqual]
|
|
218
|
-
);
|
|
219
|
-
var value = useSyncExternalStore(subscribe, instRef[0], instRef[1]);
|
|
220
|
-
useEffect(
|
|
221
|
-
function () {
|
|
222
|
-
inst.hasValue = !0;
|
|
223
|
-
inst.value = value;
|
|
224
|
-
},
|
|
225
|
-
[value]
|
|
226
|
-
);
|
|
227
|
-
useDebugValue(value);
|
|
228
|
-
return value;
|
|
229
|
-
};
|
|
230
|
-
|
|
231
|
-
|
|
232
139
|
/***/ }),
|
|
233
140
|
|
|
234
141
|
/***/ 1524:
|
|
@@ -607,6 +514,99 @@ function expirationDate(value, maxElapsedYear) {
|
|
|
607
514
|
exports.expirationDate = expirationDate;
|
|
608
515
|
|
|
609
516
|
|
|
517
|
+
/***/ }),
|
|
518
|
+
|
|
519
|
+
/***/ 3816:
|
|
520
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
521
|
+
|
|
522
|
+
"use strict";
|
|
523
|
+
/**
|
|
524
|
+
* @license React
|
|
525
|
+
* use-sync-external-store-shim/with-selector.production.js
|
|
526
|
+
*
|
|
527
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
528
|
+
*
|
|
529
|
+
* This source code is licensed under the MIT license found in the
|
|
530
|
+
* LICENSE file in the root directory of this source tree.
|
|
531
|
+
*/
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
var React = __webpack_require__(4041),
|
|
535
|
+
shim = __webpack_require__(8139);
|
|
536
|
+
function is(x, y) {
|
|
537
|
+
return (x === y && (0 !== x || 1 / x === 1 / y)) || (x !== x && y !== y);
|
|
538
|
+
}
|
|
539
|
+
var objectIs = "function" === typeof Object.is ? Object.is : is,
|
|
540
|
+
useSyncExternalStore = shim.useSyncExternalStore,
|
|
541
|
+
useRef = React.useRef,
|
|
542
|
+
useEffect = React.useEffect,
|
|
543
|
+
useMemo = React.useMemo,
|
|
544
|
+
useDebugValue = React.useDebugValue;
|
|
545
|
+
exports.useSyncExternalStoreWithSelector = function (
|
|
546
|
+
subscribe,
|
|
547
|
+
getSnapshot,
|
|
548
|
+
getServerSnapshot,
|
|
549
|
+
selector,
|
|
550
|
+
isEqual
|
|
551
|
+
) {
|
|
552
|
+
var instRef = useRef(null);
|
|
553
|
+
if (null === instRef.current) {
|
|
554
|
+
var inst = { hasValue: !1, value: null };
|
|
555
|
+
instRef.current = inst;
|
|
556
|
+
} else inst = instRef.current;
|
|
557
|
+
instRef = useMemo(
|
|
558
|
+
function () {
|
|
559
|
+
function memoizedSelector(nextSnapshot) {
|
|
560
|
+
if (!hasMemo) {
|
|
561
|
+
hasMemo = !0;
|
|
562
|
+
memoizedSnapshot = nextSnapshot;
|
|
563
|
+
nextSnapshot = selector(nextSnapshot);
|
|
564
|
+
if (void 0 !== isEqual && inst.hasValue) {
|
|
565
|
+
var currentSelection = inst.value;
|
|
566
|
+
if (isEqual(currentSelection, nextSnapshot))
|
|
567
|
+
return (memoizedSelection = currentSelection);
|
|
568
|
+
}
|
|
569
|
+
return (memoizedSelection = nextSnapshot);
|
|
570
|
+
}
|
|
571
|
+
currentSelection = memoizedSelection;
|
|
572
|
+
if (objectIs(memoizedSnapshot, nextSnapshot)) return currentSelection;
|
|
573
|
+
var nextSelection = selector(nextSnapshot);
|
|
574
|
+
if (void 0 !== isEqual && isEqual(currentSelection, nextSelection))
|
|
575
|
+
return (memoizedSnapshot = nextSnapshot), currentSelection;
|
|
576
|
+
memoizedSnapshot = nextSnapshot;
|
|
577
|
+
return (memoizedSelection = nextSelection);
|
|
578
|
+
}
|
|
579
|
+
var hasMemo = !1,
|
|
580
|
+
memoizedSnapshot,
|
|
581
|
+
memoizedSelection,
|
|
582
|
+
maybeGetServerSnapshot =
|
|
583
|
+
void 0 === getServerSnapshot ? null : getServerSnapshot;
|
|
584
|
+
return [
|
|
585
|
+
function () {
|
|
586
|
+
return memoizedSelector(getSnapshot());
|
|
587
|
+
},
|
|
588
|
+
null === maybeGetServerSnapshot
|
|
589
|
+
? void 0
|
|
590
|
+
: function () {
|
|
591
|
+
return memoizedSelector(maybeGetServerSnapshot());
|
|
592
|
+
}
|
|
593
|
+
];
|
|
594
|
+
},
|
|
595
|
+
[getSnapshot, getServerSnapshot, selector, isEqual]
|
|
596
|
+
);
|
|
597
|
+
var value = useSyncExternalStore(subscribe, instRef[0], instRef[1]);
|
|
598
|
+
useEffect(
|
|
599
|
+
function () {
|
|
600
|
+
inst.hasValue = !0;
|
|
601
|
+
inst.value = value;
|
|
602
|
+
},
|
|
603
|
+
[value]
|
|
604
|
+
);
|
|
605
|
+
useDebugValue(value);
|
|
606
|
+
return value;
|
|
607
|
+
};
|
|
608
|
+
|
|
609
|
+
|
|
610
610
|
/***/ }),
|
|
611
611
|
|
|
612
612
|
/***/ 3954:
|
|
@@ -1121,7 +1121,7 @@ exports.cardNumber = cardNumber;
|
|
|
1121
1121
|
|
|
1122
1122
|
|
|
1123
1123
|
if (true) {
|
|
1124
|
-
module.exports = __webpack_require__(
|
|
1124
|
+
module.exports = __webpack_require__(3816);
|
|
1125
1125
|
} else {}
|
|
1126
1126
|
|
|
1127
1127
|
|
|
@@ -8064,15 +8064,83 @@ function Phone(props) {
|
|
|
8064
8064
|
})]
|
|
8065
8065
|
});
|
|
8066
8066
|
}
|
|
8067
|
+
;// ../../node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
8068
|
+
function _typeof(o) {
|
|
8069
|
+
"@babel/helpers - typeof";
|
|
8070
|
+
|
|
8071
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
8072
|
+
return typeof o;
|
|
8073
|
+
} : function (o) {
|
|
8074
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
8075
|
+
}, _typeof(o);
|
|
8076
|
+
}
|
|
8077
|
+
|
|
8078
|
+
;// ../../node_modules/@babel/runtime/helpers/esm/toPrimitive.js
|
|
8079
|
+
|
|
8080
|
+
function toPrimitive(t, r) {
|
|
8081
|
+
if ("object" != _typeof(t) || !t) return t;
|
|
8082
|
+
var e = t[Symbol.toPrimitive];
|
|
8083
|
+
if (void 0 !== e) {
|
|
8084
|
+
var i = e.call(t, r || "default");
|
|
8085
|
+
if ("object" != _typeof(i)) return i;
|
|
8086
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
8087
|
+
}
|
|
8088
|
+
return ("string" === r ? String : Number)(t);
|
|
8089
|
+
}
|
|
8090
|
+
|
|
8091
|
+
;// ../../node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
|
|
8092
|
+
|
|
8093
|
+
|
|
8094
|
+
function toPropertyKey(t) {
|
|
8095
|
+
var i = toPrimitive(t, "string");
|
|
8096
|
+
return "symbol" == _typeof(i) ? i : i + "";
|
|
8097
|
+
}
|
|
8098
|
+
|
|
8099
|
+
;// ../../node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
8100
|
+
|
|
8101
|
+
function defineProperty_defineProperty(e, r, t) {
|
|
8102
|
+
return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
8103
|
+
value: t,
|
|
8104
|
+
enumerable: !0,
|
|
8105
|
+
configurable: !0,
|
|
8106
|
+
writable: !0
|
|
8107
|
+
}) : e[r] = t, e;
|
|
8108
|
+
}
|
|
8109
|
+
|
|
8110
|
+
;// ../../node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js
|
|
8111
|
+
function objectWithoutPropertiesLoose_objectWithoutPropertiesLoose(r, e) {
|
|
8112
|
+
if (null == r) return {};
|
|
8113
|
+
var t = {};
|
|
8114
|
+
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
|
|
8115
|
+
if (-1 !== e.indexOf(n)) continue;
|
|
8116
|
+
t[n] = r[n];
|
|
8117
|
+
}
|
|
8118
|
+
return t;
|
|
8119
|
+
}
|
|
8120
|
+
|
|
8121
|
+
;// ../../node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js
|
|
8122
|
+
|
|
8123
|
+
function objectWithoutProperties_objectWithoutProperties(e, t) {
|
|
8124
|
+
if (null == e) return {};
|
|
8125
|
+
var o,
|
|
8126
|
+
r,
|
|
8127
|
+
i = objectWithoutPropertiesLoose_objectWithoutPropertiesLoose(e, t);
|
|
8128
|
+
if (Object.getOwnPropertySymbols) {
|
|
8129
|
+
var n = Object.getOwnPropertySymbols(e);
|
|
8130
|
+
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
|
|
8131
|
+
}
|
|
8132
|
+
return i;
|
|
8133
|
+
}
|
|
8134
|
+
|
|
8067
8135
|
// EXTERNAL MODULE: ../../node_modules/void-elements/index.js
|
|
8068
8136
|
var void_elements = __webpack_require__(9002);
|
|
8069
8137
|
var void_elements_default = /*#__PURE__*/__webpack_require__.n(void_elements);
|
|
8070
8138
|
;// ../../node_modules/html-parse-stringify/dist/html-parse-stringify.module.js
|
|
8071
|
-
var t=/\s([^'"/\s><]+?)[\s/>]|([^\s=]+)=\s?(".*?"|'.*?')/g;function n(n){var r={type:"tag",name:"",voidElement:!1,attrs:{},children:[]},i=n.match(/<\/?([^\s]+?)[/\s>]/);if(i&&(r.name=i[1],((void_elements_default())[i[1]]||"/"===n.charAt(n.length-2))&&(r.voidElement=!0),r.name.startsWith("!--"))){var s=n.indexOf("--\x3e");return{type:"comment",comment:-1!==s?n.slice(4,s):""}}for(var a=new RegExp(t),c=null;null!==(c=a.exec(n));)if(c[0].trim())if(c[1]){var o=c[1].trim(),l=[o,""];o.indexOf("=")>-1&&(l=o.split("=")),r.attrs[l[0]]=l[1],a.lastIndex--}else c[2]&&(r.attrs[c[2]]=c[3].trim().substring(1,c[3].length-1));return r}var r=/<[a-zA-Z0-9\-\!\/](?:"[^"]*"|'[^']*'|[^'">])*>/g,i=/^\s*$/,s=Object.create(null);function a(e,t){switch(t.type){case"text":return e+t.content;case"tag":return e+="<"+t.name+(t.attrs?function(e){var t=[];for(var n in e)t.push(n+'="'+e[n]+'"');return t.length?" "+t.join(" "):""}(t.attrs):"")+(t.voidElement?"/>":">"),t.voidElement?e:e+t.children.reduce(a,"")+"</"+t.name+">";case"comment":return e+"\x3c!--"+t.comment+"--\x3e"}}var c={parse:function(e,t){t||(t={}),t.components||(t.components=s);var a,c=[],o=[],l=-1,m=!1;if(0!==e.indexOf("<")){var u=e.indexOf("<");c.push({type:"text",content:-1===u?e:e.substring(0,u)})}return e.replace(r,function(r,s){if(m){if(r!=="</"+a.name+">")return;m=!1}var u,f="/"!==r.charAt(1),h=r.startsWith("\x3c!--"),p=s+r.length,d=e.charAt(p);if(h){var v=n(r);return l<0?(c.push(v),c):((u=o[l]).children.push(v),c)}if(f&&(l++,"tag"===(a=n(r)).type&&t.components[a.name]&&(a.type="component",m=!0),a.voidElement||m||!d||"<"===d||a.children.push({type:"text",content:e.slice(p,e.indexOf("<",p))}),0===l&&c.push(a),(u=o[l-1])&&u.children.push(a),o[l]=a),(!f||a.voidElement)&&(l>-1&&(a.voidElement||a.name===r.slice(2,-1))&&(l--,a=-1===l?c:o[l]),!m&&"<"!==d&&d)){u=-1===l?c:o[l].children;var x=e.indexOf("<",p),g=e.slice(p,-1===x?void 0:x);i.test(g)&&(g=" "),(x>-1&&l+u.length>=0||" "!==g)&&u.push({type:"text",content:g})}}),c},stringify:function(e){return e.reduce(function(e,t){return e+a("",t)},"")}};/* harmony default export */ const html_parse_stringify_module = (
|
|
8139
|
+
var t=/\s([^'"/\s><]+?)[\s/>]|([^\s=]+)=\s?(".*?"|'.*?')/g;function n(n){var r={type:"tag",name:"",voidElement:!1,attrs:{},children:[]},i=n.match(/<\/?([^\s]+?)[/\s>]/);if(i&&(r.name=i[1],((void_elements_default())[i[1]]||"/"===n.charAt(n.length-2))&&(r.voidElement=!0),r.name.startsWith("!--"))){var s=n.indexOf("--\x3e");return{type:"comment",comment:-1!==s?n.slice(4,s):""}}for(var a=new RegExp(t),c=null;null!==(c=a.exec(n));)if(c[0].trim())if(c[1]){var o=c[1].trim(),l=[o,""];o.indexOf("=")>-1&&(l=o.split("=")),r.attrs[l[0]]=l[1],a.lastIndex--}else c[2]&&(r.attrs[c[2]]=c[3].trim().substring(1,c[3].length-1));return r}var r=/<[a-zA-Z0-9\-\!\/](?:"[^"]*"|'[^']*'|[^'">])*>/g,i=/^\s*$/,s=Object.create(null);function a(e,t){switch(t.type){case"text":return e+t.content;case"tag":return e+="<"+t.name+(t.attrs?function(e){var t=[];for(var n in e)t.push(n+'="'+e[n]+'"');return t.length?" "+t.join(" "):""}(t.attrs):"")+(t.voidElement?"/>":">"),t.voidElement?e:e+t.children.reduce(a,"")+"</"+t.name+">";case"comment":return e+"\x3c!--"+t.comment+"--\x3e"}}var c={parse:function(e,t){t||(t={}),t.components||(t.components=s);var a,c=[],o=[],l=-1,m=!1;if(0!==e.indexOf("<")){var u=e.indexOf("<");c.push({type:"text",content:-1===u?e:e.substring(0,u)})}return e.replace(r,function(r,s){if(m){if(r!=="</"+a.name+">")return;m=!1}var u,f="/"!==r.charAt(1),h=r.startsWith("\x3c!--"),p=s+r.length,d=e.charAt(p);if(h){var v=n(r);return l<0?(c.push(v),c):((u=o[l]).children.push(v),c)}if(f&&(l++,"tag"===(a=n(r)).type&&t.components[a.name]&&(a.type="component",m=!0),a.voidElement||m||!d||"<"===d||a.children.push({type:"text",content:e.slice(p,e.indexOf("<",p))}),0===l&&c.push(a),(u=o[l-1])&&u.children.push(a),o[l]=a),(!f||a.voidElement)&&(l>-1&&(a.voidElement||a.name===r.slice(2,-1))&&(l--,a=-1===l?c:o[l]),!m&&"<"!==d&&d)){u=-1===l?c:o[l].children;var x=e.indexOf("<",p),g=e.slice(p,-1===x?void 0:x);i.test(g)&&(g=" "),(x>-1&&l+u.length>=0||" "!==g)&&u.push({type:"text",content:g})}}),c},stringify:function(e){return e.reduce(function(e,t){return e+a("",t)},"")}};/* harmony default export */ const html_parse_stringify_module = (c);
|
|
8072
8140
|
//# sourceMappingURL=html-parse-stringify.module.js.map
|
|
8073
8141
|
|
|
8074
8142
|
;// ../../node_modules/react-i18next/dist/es/utils.js
|
|
8075
|
-
function
|
|
8143
|
+
function warn() {
|
|
8076
8144
|
if (console && console.warn) {
|
|
8077
8145
|
var _console;
|
|
8078
8146
|
|
|
@@ -8086,14 +8154,14 @@ function utils_warn() {
|
|
|
8086
8154
|
}
|
|
8087
8155
|
}
|
|
8088
8156
|
var alreadyWarned = {};
|
|
8089
|
-
function
|
|
8157
|
+
function warnOnce() {
|
|
8090
8158
|
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
|
8091
8159
|
args[_key2] = arguments[_key2];
|
|
8092
8160
|
}
|
|
8093
8161
|
|
|
8094
8162
|
if (typeof args[0] === 'string' && alreadyWarned[args[0]]) return;
|
|
8095
8163
|
if (typeof args[0] === 'string') alreadyWarned[args[0]] = new Date();
|
|
8096
|
-
|
|
8164
|
+
warn.apply(void 0, args);
|
|
8097
8165
|
}
|
|
8098
8166
|
|
|
8099
8167
|
var loadedClb = function loadedClb(i18n, cb) {
|
|
@@ -8147,7 +8215,7 @@ function hasLoadedNamespace(ns, i18n) {
|
|
|
8147
8215
|
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
8148
8216
|
|
|
8149
8217
|
if (!i18n.languages || !i18n.languages.length) {
|
|
8150
|
-
|
|
8218
|
+
warnOnce('i18n.languages were undefined or empty', i18n.languages);
|
|
8151
8219
|
return true;
|
|
8152
8220
|
}
|
|
8153
8221
|
|
|
@@ -8167,49 +8235,6 @@ function hasLoadedNamespace(ns, i18n) {
|
|
|
8167
8235
|
function utils_getDisplayName(Component) {
|
|
8168
8236
|
return Component.displayName || Component.name || (typeof Component === 'string' && Component.length > 0 ? Component : 'Unknown');
|
|
8169
8237
|
}
|
|
8170
|
-
;// ../../node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
8171
|
-
function typeof_typeof(o) {
|
|
8172
|
-
"@babel/helpers - typeof";
|
|
8173
|
-
|
|
8174
|
-
return typeof_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
8175
|
-
return typeof o;
|
|
8176
|
-
} : function (o) {
|
|
8177
|
-
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
8178
|
-
}, typeof_typeof(o);
|
|
8179
|
-
}
|
|
8180
|
-
|
|
8181
|
-
;// ../../node_modules/@babel/runtime/helpers/esm/toPrimitive.js
|
|
8182
|
-
|
|
8183
|
-
function toPrimitive(t, r) {
|
|
8184
|
-
if ("object" != typeof_typeof(t) || !t) return t;
|
|
8185
|
-
var e = t[Symbol.toPrimitive];
|
|
8186
|
-
if (void 0 !== e) {
|
|
8187
|
-
var i = e.call(t, r || "default");
|
|
8188
|
-
if ("object" != typeof_typeof(i)) return i;
|
|
8189
|
-
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
8190
|
-
}
|
|
8191
|
-
return ("string" === r ? String : Number)(t);
|
|
8192
|
-
}
|
|
8193
|
-
|
|
8194
|
-
;// ../../node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
|
|
8195
|
-
|
|
8196
|
-
|
|
8197
|
-
function toPropertyKey(t) {
|
|
8198
|
-
var i = toPrimitive(t, "string");
|
|
8199
|
-
return "symbol" == typeof_typeof(i) ? i : i + "";
|
|
8200
|
-
}
|
|
8201
|
-
|
|
8202
|
-
;// ../../node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
8203
|
-
|
|
8204
|
-
function defineProperty_defineProperty(e, r, t) {
|
|
8205
|
-
return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
8206
|
-
value: t,
|
|
8207
|
-
enumerable: !0,
|
|
8208
|
-
configurable: !0,
|
|
8209
|
-
writable: !0
|
|
8210
|
-
}) : e[r] = t, e;
|
|
8211
|
-
}
|
|
8212
|
-
|
|
8213
8238
|
;// ../../node_modules/react-i18next/dist/es/unescape.js
|
|
8214
8239
|
var matchHtmlEntity = /&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g;
|
|
8215
8240
|
var htmlEntities = {
|
|
@@ -8264,19 +8289,27 @@ function setDefaults() {
|
|
|
8264
8289
|
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
8265
8290
|
defaultOptions = _objectSpread(_objectSpread({}, defaultOptions), options);
|
|
8266
8291
|
}
|
|
8267
|
-
function
|
|
8292
|
+
function getDefaults() {
|
|
8268
8293
|
return defaultOptions;
|
|
8269
8294
|
}
|
|
8295
|
+
;// ../../node_modules/react-i18next/dist/es/i18nInstance.js
|
|
8296
|
+
var i18nInstance;
|
|
8297
|
+
function setI18n(instance) {
|
|
8298
|
+
i18nInstance = instance;
|
|
8299
|
+
}
|
|
8300
|
+
function i18nInstance_getI18n() {
|
|
8301
|
+
return i18nInstance;
|
|
8302
|
+
}
|
|
8270
8303
|
;// ../../node_modules/react-i18next/dist/es/TransWithoutContext.js
|
|
8271
8304
|
|
|
8272
8305
|
|
|
8273
8306
|
|
|
8274
|
-
var TransWithoutContext_excluded =
|
|
8275
|
-
_excluded2 =
|
|
8307
|
+
var TransWithoutContext_excluded = ["format"],
|
|
8308
|
+
_excluded2 = ["children", "count", "parent", "i18nKey", "context", "tOptions", "values", "defaults", "components", "ns", "i18n", "t", "shouldUnescape"];
|
|
8276
8309
|
|
|
8277
8310
|
function TransWithoutContext_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
8278
8311
|
|
|
8279
|
-
function TransWithoutContext_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { TransWithoutContext_ownKeys(Object(source), true).forEach(function (key) {
|
|
8312
|
+
function TransWithoutContext_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { TransWithoutContext_ownKeys(Object(source), true).forEach(function (key) { defineProperty_defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { TransWithoutContext_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
8280
8313
|
|
|
8281
8314
|
|
|
8282
8315
|
|
|
@@ -8299,7 +8332,7 @@ function getChildren(node) {
|
|
|
8299
8332
|
function hasValidReactChildren(children) {
|
|
8300
8333
|
if (Object.prototype.toString.call(children) !== '[object Array]') return false;
|
|
8301
8334
|
return children.every(function (child) {
|
|
8302
|
-
return isValidElement(child);
|
|
8335
|
+
return (0,react.isValidElement)(child);
|
|
8303
8336
|
});
|
|
8304
8337
|
}
|
|
8305
8338
|
|
|
@@ -8322,7 +8355,7 @@ function nodesToString(children, i18nOptions) {
|
|
|
8322
8355
|
childrenArray.forEach(function (child, childIndex) {
|
|
8323
8356
|
if (typeof child === 'string') {
|
|
8324
8357
|
stringNode += "".concat(child);
|
|
8325
|
-
} else if (isValidElement(child)) {
|
|
8358
|
+
} else if ((0,react.isValidElement)(child)) {
|
|
8326
8359
|
var childPropsCount = Object.keys(child.props).length;
|
|
8327
8360
|
var shouldKeepChild = keepArray.indexOf(child.type) > -1;
|
|
8328
8361
|
var childChildren = child.props.children;
|
|
@@ -8343,7 +8376,7 @@ function nodesToString(children, i18nOptions) {
|
|
|
8343
8376
|
warn("Trans: the passed in value is invalid - seems you passed in a null child.");
|
|
8344
8377
|
} else if (_typeof(child) === 'object') {
|
|
8345
8378
|
var format = child.format,
|
|
8346
|
-
clone =
|
|
8379
|
+
clone = objectWithoutProperties_objectWithoutProperties(child, TransWithoutContext_excluded);
|
|
8347
8380
|
|
|
8348
8381
|
var keys = Object.keys(clone);
|
|
8349
8382
|
|
|
@@ -8371,12 +8404,12 @@ function renderNodes(children, targetString, i18n, i18nOptions, combinedTOpts, s
|
|
|
8371
8404
|
var childrenArray = getAsArray(childs);
|
|
8372
8405
|
childrenArray.forEach(function (child) {
|
|
8373
8406
|
if (typeof child === 'string') return;
|
|
8374
|
-
if (hasChildren(child)) getData(getChildren(child));else if (_typeof(child) === 'object' && !isValidElement(child)) Object.assign(data, child);
|
|
8407
|
+
if (hasChildren(child)) getData(getChildren(child));else if (_typeof(child) === 'object' && !(0,react.isValidElement)(child)) Object.assign(data, child);
|
|
8375
8408
|
});
|
|
8376
8409
|
}
|
|
8377
8410
|
|
|
8378
8411
|
getData(children);
|
|
8379
|
-
var ast =
|
|
8412
|
+
var ast = html_parse_stringify_module.parse("<0>".concat(targetString, "</0>"));
|
|
8380
8413
|
|
|
8381
8414
|
var opts = TransWithoutContext_objectSpread(TransWithoutContext_objectSpread({}, data), combinedTOpts);
|
|
8382
8415
|
|
|
@@ -8388,7 +8421,7 @@ function renderNodes(children, targetString, i18n, i18nOptions, combinedTOpts, s
|
|
|
8388
8421
|
|
|
8389
8422
|
function pushTranslatedJSX(child, inner, mem, i, isVoid) {
|
|
8390
8423
|
if (child.dummy) child.children = inner;
|
|
8391
|
-
mem.push(cloneElement(child, TransWithoutContext_objectSpread(TransWithoutContext_objectSpread({}, child.props), {}, {
|
|
8424
|
+
mem.push((0,react.cloneElement)(child, TransWithoutContext_objectSpread(TransWithoutContext_objectSpread({}, child.props), {}, {
|
|
8392
8425
|
key: i
|
|
8393
8426
|
}), isVoid ? undefined : inner));
|
|
8394
8427
|
}
|
|
@@ -8406,7 +8439,7 @@ function renderNodes(children, targetString, i18n, i18nOptions, combinedTOpts, s
|
|
|
8406
8439
|
var child = Object.keys(node.attrs).length !== 0 ? mergeProps({
|
|
8407
8440
|
props: node.attrs
|
|
8408
8441
|
}, tmp) : tmp;
|
|
8409
|
-
var isElement = isValidElement(child);
|
|
8442
|
+
var isElement = (0,react.isValidElement)(child);
|
|
8410
8443
|
var isValidTranslationWithChildren = isElement && hasChildren(node, true) && !node.voidElement;
|
|
8411
8444
|
var isEmptyTransWithHTML = emptyChildrenButNeedsHandling && _typeof(child) === 'object' && child.dummy && !isElement;
|
|
8412
8445
|
var isKnownComponent = _typeof(children) === 'object' && children !== null && Object.hasOwnProperty.call(children, node.name);
|
|
@@ -8420,7 +8453,7 @@ function renderNodes(children, targetString, i18n, i18nOptions, combinedTOpts, s
|
|
|
8420
8453
|
} else if (isEmptyTransWithHTML) {
|
|
8421
8454
|
var _inner = mapAST(reactNodes, node.children, rootReactNode);
|
|
8422
8455
|
|
|
8423
|
-
mem.push(cloneElement(child, TransWithoutContext_objectSpread(TransWithoutContext_objectSpread({}, child.props), {}, {
|
|
8456
|
+
mem.push((0,react.cloneElement)(child, TransWithoutContext_objectSpread(TransWithoutContext_objectSpread({}, child.props), {}, {
|
|
8424
8457
|
key: i
|
|
8425
8458
|
}), _inner));
|
|
8426
8459
|
} else if (Number.isNaN(parseFloat(node.name))) {
|
|
@@ -8430,13 +8463,13 @@ function renderNodes(children, targetString, i18n, i18nOptions, combinedTOpts, s
|
|
|
8430
8463
|
pushTranslatedJSX(child, _inner2, mem, i, node.voidElement);
|
|
8431
8464
|
} else if (i18nOptions.transSupportBasicHtmlNodes && keepArray.indexOf(node.name) > -1) {
|
|
8432
8465
|
if (node.voidElement) {
|
|
8433
|
-
mem.push(createElement(node.name, {
|
|
8466
|
+
mem.push((0,react.createElement)(node.name, {
|
|
8434
8467
|
key: "".concat(node.name, "-").concat(i)
|
|
8435
8468
|
}));
|
|
8436
8469
|
} else {
|
|
8437
8470
|
var _inner3 = mapAST(reactNodes, node.children, rootReactNode);
|
|
8438
8471
|
|
|
8439
|
-
mem.push(createElement(node.name, {
|
|
8472
|
+
mem.push((0,react.createElement)(node.name, {
|
|
8440
8473
|
key: "".concat(node.name, "-").concat(i)
|
|
8441
8474
|
}, _inner3));
|
|
8442
8475
|
}
|
|
@@ -8451,11 +8484,11 @@ function renderNodes(children, targetString, i18n, i18nOptions, combinedTOpts, s
|
|
|
8451
8484
|
var content = node.children[0] ? translationContent : null;
|
|
8452
8485
|
if (content) mem.push(content);
|
|
8453
8486
|
} else if (node.children.length === 1 && translationContent) {
|
|
8454
|
-
mem.push(cloneElement(child, TransWithoutContext_objectSpread(TransWithoutContext_objectSpread({}, child.props), {}, {
|
|
8487
|
+
mem.push((0,react.cloneElement)(child, TransWithoutContext_objectSpread(TransWithoutContext_objectSpread({}, child.props), {}, {
|
|
8455
8488
|
key: i
|
|
8456
8489
|
}), translationContent));
|
|
8457
8490
|
} else {
|
|
8458
|
-
mem.push(cloneElement(child, TransWithoutContext_objectSpread(TransWithoutContext_objectSpread({}, child.props), {}, {
|
|
8491
|
+
mem.push((0,react.cloneElement)(child, TransWithoutContext_objectSpread(TransWithoutContext_objectSpread({}, child.props), {}, {
|
|
8459
8492
|
key: i
|
|
8460
8493
|
})));
|
|
8461
8494
|
}
|
|
@@ -8465,7 +8498,7 @@ function renderNodes(children, targetString, i18n, i18nOptions, combinedTOpts, s
|
|
|
8465
8498
|
var _content = shouldUnescape ? i18nOptions.unescape(i18n.services.interpolator.interpolate(node.content, opts, i18n.language)) : i18n.services.interpolator.interpolate(node.content, opts, i18n.language);
|
|
8466
8499
|
|
|
8467
8500
|
if (wrapTextNodes) {
|
|
8468
|
-
mem.push(createElement(wrapTextNodes, {
|
|
8501
|
+
mem.push((0,react.createElement)(wrapTextNodes, {
|
|
8469
8502
|
key: "".concat(node.name, "-").concat(i)
|
|
8470
8503
|
}, _content));
|
|
8471
8504
|
} else {
|
|
@@ -8499,9 +8532,9 @@ function Trans(_ref) {
|
|
|
8499
8532
|
i18nFromProps = _ref.i18n,
|
|
8500
8533
|
tFromProps = _ref.t,
|
|
8501
8534
|
shouldUnescape = _ref.shouldUnescape,
|
|
8502
|
-
additionalProps =
|
|
8535
|
+
additionalProps = objectWithoutProperties_objectWithoutProperties(_ref, _excluded2);
|
|
8503
8536
|
|
|
8504
|
-
var i18n = i18nFromProps ||
|
|
8537
|
+
var i18n = i18nFromProps || i18nInstance_getI18n();
|
|
8505
8538
|
|
|
8506
8539
|
if (!i18n) {
|
|
8507
8540
|
warnOnce('You will need to pass in an i18next instance by using i18nextReactModule');
|
|
@@ -8538,7 +8571,7 @@ function Trans(_ref) {
|
|
|
8538
8571
|
var translation = key ? t(key, combinedTOpts) : defaultValue;
|
|
8539
8572
|
var content = renderNodes(components || children, translation, i18n, reactI18nextOptions, combinedTOpts, shouldUnescape);
|
|
8540
8573
|
var useAsParent = parent !== undefined ? parent : reactI18nextOptions.defaultTransParent;
|
|
8541
|
-
return useAsParent ? createElement(useAsParent, additionalProps, content) : content;
|
|
8574
|
+
return useAsParent ? (0,react.createElement)(useAsParent, additionalProps, content) : content;
|
|
8542
8575
|
}
|
|
8543
8576
|
;// ../../node_modules/@babel/runtime/helpers/esm/classCallCheck.js
|
|
8544
8577
|
function _classCallCheck(a, n) {
|
|
@@ -8559,14 +8592,6 @@ function _createClass(e, r, t) {
|
|
|
8559
8592
|
}), e;
|
|
8560
8593
|
}
|
|
8561
8594
|
|
|
8562
|
-
;// ../../node_modules/react-i18next/dist/es/i18nInstance.js
|
|
8563
|
-
var i18nInstance;
|
|
8564
|
-
function setI18n(instance) {
|
|
8565
|
-
i18nInstance = instance;
|
|
8566
|
-
}
|
|
8567
|
-
function i18nInstance_getI18n() {
|
|
8568
|
-
return i18nInstance;
|
|
8569
|
-
}
|
|
8570
8595
|
;// ../../node_modules/react-i18next/dist/es/initReactI18next.js
|
|
8571
8596
|
|
|
8572
8597
|
|
|
@@ -8650,11 +8675,11 @@ function getInitialProps() {
|
|
|
8650
8675
|
;// ../../node_modules/react-i18next/dist/es/Trans.js
|
|
8651
8676
|
|
|
8652
8677
|
|
|
8653
|
-
var Trans_excluded =
|
|
8678
|
+
var Trans_excluded = ["children", "count", "parent", "i18nKey", "context", "tOptions", "values", "defaults", "components", "ns", "i18n", "t", "shouldUnescape"];
|
|
8654
8679
|
|
|
8655
8680
|
function Trans_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
8656
8681
|
|
|
8657
|
-
function Trans_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { Trans_ownKeys(Object(source), true).forEach(function (key) {
|
|
8682
|
+
function Trans_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { Trans_ownKeys(Object(source), true).forEach(function (key) { defineProperty_defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { Trans_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
8658
8683
|
|
|
8659
8684
|
|
|
8660
8685
|
|
|
@@ -8675,15 +8700,15 @@ function Trans_Trans(_ref) {
|
|
|
8675
8700
|
i18nFromProps = _ref.i18n,
|
|
8676
8701
|
tFromProps = _ref.t,
|
|
8677
8702
|
shouldUnescape = _ref.shouldUnescape,
|
|
8678
|
-
additionalProps =
|
|
8703
|
+
additionalProps = objectWithoutProperties_objectWithoutProperties(_ref, Trans_excluded);
|
|
8679
8704
|
|
|
8680
|
-
var _ref2 = useContext(
|
|
8705
|
+
var _ref2 = (0,react.useContext)(context_I18nContext) || {},
|
|
8681
8706
|
i18nFromContext = _ref2.i18n,
|
|
8682
8707
|
defaultNSFromContext = _ref2.defaultNS;
|
|
8683
8708
|
|
|
8684
|
-
var i18n = i18nFromProps || i18nFromContext ||
|
|
8709
|
+
var i18n = i18nFromProps || i18nFromContext || i18nInstance_getI18n();
|
|
8685
8710
|
var t = tFromProps || i18n && i18n.t.bind(i18n);
|
|
8686
|
-
return
|
|
8711
|
+
return Trans(Trans_objectSpread({
|
|
8687
8712
|
children: children,
|
|
8688
8713
|
count: count,
|
|
8689
8714
|
parent: parent,
|
|
@@ -8797,11 +8822,11 @@ function useTranslation_useTranslation(ns) {
|
|
|
8797
8822
|
if (i18n && !i18n.reportNamespaces) i18n.reportNamespaces = new ReportNamespaces();
|
|
8798
8823
|
|
|
8799
8824
|
if (!i18n) {
|
|
8800
|
-
|
|
8825
|
+
warnOnce('You will need to pass in an i18next instance by using initReactI18next');
|
|
8801
8826
|
|
|
8802
8827
|
var notReadyT = function notReadyT(k, optsOrDefaultValue) {
|
|
8803
8828
|
if (typeof optsOrDefaultValue === 'string') return optsOrDefaultValue;
|
|
8804
|
-
if (optsOrDefaultValue &&
|
|
8829
|
+
if (optsOrDefaultValue && _typeof(optsOrDefaultValue) === 'object' && typeof optsOrDefaultValue.defaultValue === 'string') return optsOrDefaultValue.defaultValue;
|
|
8805
8830
|
return Array.isArray(k) ? k[k.length - 1] : k;
|
|
8806
8831
|
};
|
|
8807
8832
|
|
|
@@ -8812,9 +8837,9 @@ function useTranslation_useTranslation(ns) {
|
|
|
8812
8837
|
return retNotReady;
|
|
8813
8838
|
}
|
|
8814
8839
|
|
|
8815
|
-
if (i18n.options.react && i18n.options.react.wait !== undefined)
|
|
8840
|
+
if (i18n.options.react && i18n.options.react.wait !== undefined) warnOnce('It seems you are still using the old wait option, you may migrate to the new useSuspense behaviour.');
|
|
8816
8841
|
|
|
8817
|
-
var i18nOptions = useTranslation_objectSpread(useTranslation_objectSpread(useTranslation_objectSpread({},
|
|
8842
|
+
var i18nOptions = useTranslation_objectSpread(useTranslation_objectSpread(useTranslation_objectSpread({}, getDefaults()), i18n.options.react), props);
|
|
8818
8843
|
|
|
8819
8844
|
var useSuspense = i18nOptions.useSuspense,
|
|
8820
8845
|
keyPrefix = i18nOptions.keyPrefix;
|
|
@@ -13772,11 +13797,7 @@ const ContactForm = /*#__PURE__*/(/* unused pure expression or super */ null &&
|
|
|
13772
13797
|
classes += isRTL ? '!rounded-l-lg ' : '!rounded-r-lg ';
|
|
13773
13798
|
}
|
|
13774
13799
|
if (position === 'right') {
|
|
13775
|
-
|
|
13776
|
-
classes += '-me-px ';
|
|
13777
|
-
} else {
|
|
13778
|
-
classes += '-ms-px ';
|
|
13779
|
-
}
|
|
13800
|
+
classes += isRTL ? '-me-px ' : '-ms-px ';
|
|
13780
13801
|
}
|
|
13781
13802
|
if (hasError) {
|
|
13782
13803
|
classes += '!z-10 !border-red-300 ';
|
|
@@ -14062,7 +14083,7 @@ const ContactForm = /*#__PURE__*/(/* unused pure expression or super */ null &&
|
|
|
14062
14083
|
disabled: disableFields == null ? void 0 : disableFields.email,
|
|
14063
14084
|
verified: verifiedFields == null ? void 0 : verifiedFields.email,
|
|
14064
14085
|
customStyle: {
|
|
14065
|
-
direction:
|
|
14086
|
+
direction: 'ltr'
|
|
14066
14087
|
}
|
|
14067
14088
|
}), needsPhone && /*#__PURE__*/_jsx(PhoneFormInput, {
|
|
14068
14089
|
name: "phone",
|
|
@@ -17567,7 +17588,6 @@ function PhoneInput(props) {
|
|
|
17567
17588
|
const {
|
|
17568
17589
|
t
|
|
17569
17590
|
} = useTranslation_useTranslation('kitComponents');
|
|
17570
|
-
const langDirection = document.documentElement.dir;
|
|
17571
17591
|
const validatePhone = value => {
|
|
17572
17592
|
if (value) {
|
|
17573
17593
|
var _parseMax;
|
|
@@ -17739,8 +17759,8 @@ const formatCurrencyForDisplay_formatCurrencyForDisplay = originalCurrency => {
|
|
|
17739
17759
|
if (symbol) {
|
|
17740
17760
|
return {
|
|
17741
17761
|
displayCurrency: symbol,
|
|
17742
|
-
currencyClassName: 'currency-
|
|
17743
|
-
currencyFontFamily: '
|
|
17762
|
+
currencyClassName: 'currency-font',
|
|
17763
|
+
currencyFontFamily: 'currencyFont'
|
|
17744
17764
|
};
|
|
17745
17765
|
}
|
|
17746
17766
|
return {
|
|
@@ -17793,6 +17813,7 @@ var checkGreenIcon_ForwardRef = /*#__PURE__*/(/* unused pure expression or super
|
|
|
17793
17813
|
|
|
17794
17814
|
|
|
17795
17815
|
|
|
17816
|
+
|
|
17796
17817
|
function InvoiceComponent(props) {
|
|
17797
17818
|
var _plan$extra, _plan$extra2, _plan$extra3, _paymentDetails$produ, _plan$discountDetails, _plan$discountDetails2;
|
|
17798
17819
|
const {
|
|
@@ -17845,9 +17866,7 @@ function InvoiceComponent(props) {
|
|
|
17845
17866
|
children: paymentDetails == null ? void 0 : paymentDetails.company
|
|
17846
17867
|
}), /*#__PURE__*/_jsx("p", {
|
|
17847
17868
|
className: "text-sm text-gray-500",
|
|
17848
|
-
|
|
17849
|
-
direction: 'ltr'
|
|
17850
|
-
},
|
|
17869
|
+
dir: getTextDirection(paymentDetails == null ? void 0 : paymentDetails.address),
|
|
17851
17870
|
children: paymentDetails == null ? void 0 : paymentDetails.address
|
|
17852
17871
|
})]
|
|
17853
17872
|
})]
|
|
@@ -18113,7 +18132,8 @@ function InvoiceComponent(props) {
|
|
|
18113
18132
|
className: "font-medium text-gray-700",
|
|
18114
18133
|
children: [t('BILLING_ADDRESS'), ":"]
|
|
18115
18134
|
}), /*#__PURE__*/_jsx("p", {
|
|
18116
|
-
className: "text-sm text-gray-600",
|
|
18135
|
+
className: "text-sm text-gray-600 w-fit",
|
|
18136
|
+
dir: getTextDirection(paymentDetails == null ? void 0 : paymentDetails.billingAddress),
|
|
18117
18137
|
children: paymentDetails.billingAddress
|
|
18118
18138
|
})]
|
|
18119
18139
|
}), !paymentLinkToken && paymentDetails.showShipping && paymentDetails.shippingAddress && /*#__PURE__*/_jsxs("div", {
|
|
@@ -18552,6 +18572,7 @@ const close_icon_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUg
|
|
|
18552
18572
|
|
|
18553
18573
|
|
|
18554
18574
|
|
|
18575
|
+
|
|
18555
18576
|
function OrderDetailsModal(props) {
|
|
18556
18577
|
var _plan$extra, _plan$extra2, _plan$extra3, _plan$discountDetails, _plan$discountDetails2;
|
|
18557
18578
|
const {
|
|
@@ -18610,23 +18631,26 @@ function OrderDetailsModal(props) {
|
|
|
18610
18631
|
})]
|
|
18611
18632
|
}), (paymentLinkToken || paymentDetails.showItems) && (paymentDetails == null ? void 0 : paymentDetails.products.map(product => {
|
|
18612
18633
|
return /*#__PURE__*/_jsxs("div", {
|
|
18613
|
-
className: "flex gap-3 items-center",
|
|
18614
|
-
children: [/*#__PURE__*/
|
|
18615
|
-
className: "
|
|
18616
|
-
|
|
18617
|
-
|
|
18618
|
-
|
|
18619
|
-
|
|
18620
|
-
|
|
18621
|
-
children:
|
|
18622
|
-
|
|
18623
|
-
|
|
18624
|
-
|
|
18625
|
-
|
|
18626
|
-
|
|
18634
|
+
className: "flex gap-3 items-center justify-between",
|
|
18635
|
+
children: [/*#__PURE__*/_jsxs("div", {
|
|
18636
|
+
className: "flex gap-3 items-center",
|
|
18637
|
+
children: [/*#__PURE__*/_jsx("img", {
|
|
18638
|
+
className: "w-12 h-12 bg-gray-400 rounded-2xl",
|
|
18639
|
+
src: product.image ? product.image : emptyImage,
|
|
18640
|
+
alt: product == null ? void 0 : product.name
|
|
18641
|
+
}), /*#__PURE__*/_jsxs("div", {
|
|
18642
|
+
children: [/*#__PURE__*/_jsx("p", {
|
|
18643
|
+
className: "font-medium text-sm text-gray-900",
|
|
18644
|
+
children: product == null ? void 0 : product.name
|
|
18645
|
+
}), /*#__PURE__*/_jsx("p", {
|
|
18646
|
+
className: "text-sm text-gray-600",
|
|
18647
|
+
dangerouslySetInnerHTML: {
|
|
18648
|
+
__html: product == null ? void 0 : product.description
|
|
18649
|
+
}
|
|
18650
|
+
})]
|
|
18627
18651
|
})]
|
|
18628
18652
|
}), /*#__PURE__*/_jsxs("div", {
|
|
18629
|
-
className: "
|
|
18653
|
+
className: "flex flex-col gap-2 items-end",
|
|
18630
18654
|
children: [/*#__PURE__*/_jsxs("p", {
|
|
18631
18655
|
className: "font-medium text-sm text-gray-900",
|
|
18632
18656
|
children: [/*#__PURE__*/_jsx("span", {
|
|
@@ -18838,7 +18862,8 @@ function OrderDetailsModal(props) {
|
|
|
18838
18862
|
className: "font-medium text-gray-700",
|
|
18839
18863
|
children: [t('BILLING_ADDRESS'), ":"]
|
|
18840
18864
|
}), /*#__PURE__*/_jsx("p", {
|
|
18841
|
-
className: "text-sm text-gray-600",
|
|
18865
|
+
className: "text-sm text-gray-600 w-fit",
|
|
18866
|
+
dir: getTextDirection(paymentDetails == null ? void 0 : paymentDetails.billingAddress),
|
|
18842
18867
|
children: paymentDetails.billingAddress
|
|
18843
18868
|
})]
|
|
18844
18869
|
}), !paymentLinkToken && paymentDetails.showShipping && paymentDetails.shippingAddress && /*#__PURE__*/_jsxs("div", {
|
|
@@ -18936,7 +18961,7 @@ function MobileOTPModal_MobileOTPModal(props) {
|
|
|
18936
18961
|
children: modalHeader
|
|
18937
18962
|
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
|
|
18938
18963
|
className: "text-sm font-medium text-gray-600 w-3/4",
|
|
18939
|
-
children: ["
|
|
18964
|
+
children: [t('OTP_HINT'), " ", phoneNumber || t('MOBILE_NUMBER')]
|
|
18940
18965
|
})]
|
|
18941
18966
|
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
18942
18967
|
className: "flex flex-col items-start border-t border-b border-gray-200 px-6 py-6 w-full",
|
|
@@ -18969,9 +18994,9 @@ function MobileOTPModal_MobileOTPModal(props) {
|
|
|
18969
18994
|
style: customStyle == null ? void 0 : customStyle['container'],
|
|
18970
18995
|
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
18971
18996
|
className: "flex animate-pulse",
|
|
18972
|
-
children: [/*#__PURE__*/(0,jsx_runtime.
|
|
18997
|
+
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
|
|
18973
18998
|
className: "sr-only",
|
|
18974
|
-
children: "
|
|
18999
|
+
children: [t('LOADING'), "..."]
|
|
18975
19000
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
18976
19001
|
className: "w-3 h-3 bg-gray-500 rounded-full animate-bounce [animation-delay:-0.3s]"
|
|
18977
19002
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
@@ -18987,7 +19012,7 @@ function MobileOTPModal_MobileOTPModal(props) {
|
|
|
18987
19012
|
}), !length && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
18988
19013
|
className: "px-6",
|
|
18989
19014
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)(Button_Button, {
|
|
18990
|
-
label: "
|
|
19015
|
+
label: t("SUBMIT_BTN"),
|
|
18991
19016
|
id: "pay-button",
|
|
18992
19017
|
onClick: handleOtpSubmit,
|
|
18993
19018
|
disabled: !otp || loading,
|
|
@@ -21083,6 +21108,7 @@ function formatAmountBasedOnCurrency_formatAmountBasedOnCurrency(amount, currenc
|
|
|
21083
21108
|
|
|
21084
21109
|
|
|
21085
21110
|
|
|
21111
|
+
|
|
21086
21112
|
|
|
21087
21113
|
|
|
21088
21114
|
;// ../../node_modules/react-loading-skeleton/dist/index.js
|
|
@@ -21562,6 +21588,9 @@ function cardFormViewTwo_Card(props) {
|
|
|
21562
21588
|
bankTermsAndConditions,
|
|
21563
21589
|
isBankTermsAgreed
|
|
21564
21590
|
} = props;
|
|
21591
|
+
const {
|
|
21592
|
+
t
|
|
21593
|
+
} = useTranslation('card');
|
|
21565
21594
|
const lang = useSafeSelector(state => state.lang);
|
|
21566
21595
|
const langDirection = lang === 'ar' ? 'rtl' : 'ltr';
|
|
21567
21596
|
const isRTL = langDirection === 'rtl';
|
|
@@ -21574,9 +21603,6 @@ function cardFormViewTwo_Card(props) {
|
|
|
21574
21603
|
label: customStyle == null ? void 0 : customStyle.label,
|
|
21575
21604
|
error: customStyle == null ? void 0 : customStyle.error
|
|
21576
21605
|
};
|
|
21577
|
-
const {
|
|
21578
|
-
t
|
|
21579
|
-
} = useTranslation('card');
|
|
21580
21606
|
const {
|
|
21581
21607
|
handleSubmit,
|
|
21582
21608
|
errors,
|
|
@@ -21824,16 +21850,15 @@ function mobileCardFormViewTwo_MobileCard(props) {
|
|
|
21824
21850
|
bankTermsAndConditions,
|
|
21825
21851
|
isBankTermsAgreed
|
|
21826
21852
|
} = props;
|
|
21853
|
+
const {
|
|
21854
|
+
t
|
|
21855
|
+
} = useTranslation('card');
|
|
21827
21856
|
const [cardNumberSelected, setCardNumberSelected] = useState(false);
|
|
21828
21857
|
const [validCard, setValidCard] = useState(false);
|
|
21829
21858
|
const [showName, setShowName] = useState(false);
|
|
21830
21859
|
const [showModal, setShowModal] = useState(false);
|
|
21831
|
-
const
|
|
21832
|
-
|
|
21833
|
-
} = useTranslation('card');
|
|
21834
|
-
const onClose = () => {
|
|
21835
|
-
setShowModal(false);
|
|
21836
|
-
};
|
|
21860
|
+
const lang = useSafeSelector(state => state.lang);
|
|
21861
|
+
const langDirection = lang === 'ar' ? 'rtl' : 'ltr';
|
|
21837
21862
|
const styling = {
|
|
21838
21863
|
container: {
|
|
21839
21864
|
backgroundColor: customStyle == null ? void 0 : customStyle.backgroundColor,
|
|
@@ -21841,12 +21866,16 @@ function mobileCardFormViewTwo_MobileCard(props) {
|
|
|
21841
21866
|
},
|
|
21842
21867
|
input: {
|
|
21843
21868
|
color: customStyle == null ? void 0 : customStyle.fieldColor,
|
|
21844
|
-
borderColor: customStyle == null ? void 0 : customStyle.borderColor
|
|
21869
|
+
borderColor: customStyle == null ? void 0 : customStyle.borderColor,
|
|
21870
|
+
direction: langDirection
|
|
21845
21871
|
},
|
|
21846
21872
|
button: {
|
|
21847
21873
|
backgroundColor: customStyle == null ? void 0 : customStyle.buttonColor
|
|
21848
21874
|
}
|
|
21849
21875
|
};
|
|
21876
|
+
const onClose = () => {
|
|
21877
|
+
setShowModal(false);
|
|
21878
|
+
};
|
|
21850
21879
|
const {
|
|
21851
21880
|
handleSubmit,
|
|
21852
21881
|
errors,
|
|
@@ -22039,6 +22068,7 @@ function mobileCardFormViewTwo_MobileCard(props) {
|
|
|
22039
22068
|
formRegister: nameRegister,
|
|
22040
22069
|
maxLength: CARD_HOLDER_NAME_MAX_LENGTH,
|
|
22041
22070
|
error: errors['name'],
|
|
22071
|
+
customStyle: styling.input,
|
|
22042
22072
|
className: `rounded-lg border-t-0 rounded-t-none ${errors['name'] ? 'border-red-300' : 'border-gray-300'}`
|
|
22043
22073
|
})
|
|
22044
22074
|
}), discountErrorMessage && /*#__PURE__*/_jsx("p", {
|
|
@@ -22834,12 +22864,21 @@ const AddCardButtons_AddCardButtons = props => {
|
|
|
22834
22864
|
const {
|
|
22835
22865
|
t
|
|
22836
22866
|
} = useTranslation('kitComponents');
|
|
22867
|
+
const {
|
|
22868
|
+
t: tPaymentLayout
|
|
22869
|
+
} = useTranslation('flash', {
|
|
22870
|
+
keyPrefix: 'paymentLayout'
|
|
22871
|
+
});
|
|
22837
22872
|
const {
|
|
22838
22873
|
borderStyle
|
|
22839
22874
|
} = useSelector(state => state.customization);
|
|
22840
22875
|
const lang = useSafeSelector(state => state.lang);
|
|
22841
22876
|
const langDirection = lang === 'ar' ? 'rtl' : 'ltr';
|
|
22842
22877
|
const isRTL = langDirection === "rtl";
|
|
22878
|
+
const {
|
|
22879
|
+
displayCurrency,
|
|
22880
|
+
currencyClassName
|
|
22881
|
+
} = formatCurrencyForDisplay(currency);
|
|
22843
22882
|
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
22844
22883
|
children: [/*#__PURE__*/_jsx("div", {
|
|
22845
22884
|
className: "w-[200%] mt-6 self-center border-b border-gray-200"
|
|
@@ -22851,10 +22890,13 @@ const AddCardButtons_AddCardButtons = props => {
|
|
|
22851
22890
|
className: `py-[10px] px-4 md:py-3 md:px-4 text-gray-500 hover:bg-gray-200 focus:ring-4 focus:outline-none focus:ring-gray-200 ${borderStyle === borderStyleConstants.RECTANGULAR ? 'rounded-none' : 'rounded-lg'} border border-gray-200 text-base hover:text-gray-900 focus:z-10 mobile:w-full`,
|
|
22852
22891
|
children: t('CANCEL_BTN')
|
|
22853
22892
|
}), /*#__PURE__*/_jsx(Button, {
|
|
22854
|
-
label:
|
|
22855
|
-
|
|
22893
|
+
label: /*#__PURE__*/_jsxs(_Fragment, {
|
|
22894
|
+
children: [t('SAVED_CARDS_ACTION_BTN'), ' ', /*#__PURE__*/_jsx("span", {
|
|
22895
|
+
className: currencyClassName,
|
|
22896
|
+
children: tPaymentLayout(displayCurrency)
|
|
22897
|
+
}), ' ', Number(amount.replace(',', '')).toLocaleString('en-US', {
|
|
22856
22898
|
minimumFractionDigits: 2
|
|
22857
|
-
})
|
|
22899
|
+
}), ' ', t('NOW')]
|
|
22858
22900
|
}),
|
|
22859
22901
|
id: "pay-button",
|
|
22860
22902
|
loading: loading,
|
|
@@ -23564,6 +23606,11 @@ const CardElement = /*#__PURE__*/(0,react.forwardRef)(({
|
|
|
23564
23606
|
const {
|
|
23565
23607
|
t
|
|
23566
23608
|
} = useTranslation_useTranslation('card');
|
|
23609
|
+
const {
|
|
23610
|
+
t: tPaymentLayout
|
|
23611
|
+
} = useTranslation_useTranslation('flash', {
|
|
23612
|
+
keyPrefix: 'paymentLayout'
|
|
23613
|
+
});
|
|
23567
23614
|
const isMobile = useWidth_useWidth();
|
|
23568
23615
|
const [loading, setLoading] = (0,react.useState)(false);
|
|
23569
23616
|
const [cardHolderName, setCardHolderName] = (0,react.useState)('');
|
|
@@ -23592,13 +23639,13 @@ const CardElement = /*#__PURE__*/(0,react.forwardRef)(({
|
|
|
23592
23639
|
const isAmexCardSelected = (selectedCard == null ? void 0 : selectedCard.type) === src_constants_CARD_TYPES.AMEX;
|
|
23593
23640
|
const selectedCardCvvLength = selectedCardCVV.length;
|
|
23594
23641
|
const selectedCardId = selectedCard == null ? void 0 : selectedCard.id;
|
|
23642
|
+
const [discountAppliedMessage, setDiscountAppliedMessage] = (0,react.useState)(null);
|
|
23643
|
+
const [discountErrorMessage, setDiscountErrorMessage] = (0,react.useState)('');
|
|
23644
|
+
const [totalAmount, setTotalAmount] = (0,react.useState)('');
|
|
23595
23645
|
const {
|
|
23596
23646
|
displayCurrency,
|
|
23597
23647
|
currencyFontFamily
|
|
23598
23648
|
} = formatCurrencyForDisplay_formatCurrencyForDisplay(currency);
|
|
23599
|
-
const [discountAppliedMessage, setDiscountAppliedMessage] = (0,react.useState)('');
|
|
23600
|
-
const [discountErrorMessage, setDiscountErrorMessage] = (0,react.useState)('');
|
|
23601
|
-
const [totalAmount, setTotalAmount] = (0,react.useState)('');
|
|
23602
23649
|
const showCvvInput = paymentMethodType === constants_PAYMENT_METHODS_TYPES.MOTO && useCvv || paymentMethodType === constants_PAYMENT_METHODS_TYPES.ONLINE;
|
|
23603
23650
|
const shouldDisablePayBtn = showCvvInput ? loading || (isAmexCardSelected ? selectedCardCvvLength !== src_constants_AMEX_CVV_LENGTH : selectedCardCvvLength !== constants_CVV_LENGTH) : !selectedCardId;
|
|
23604
23651
|
(0,react.useEffect)(() => {
|
|
@@ -23867,7 +23914,7 @@ const CardElement = /*#__PURE__*/(0,react.forwardRef)(({
|
|
|
23867
23914
|
};
|
|
23868
23915
|
const handleResetDiscountMessages = () => {
|
|
23869
23916
|
setDiscountErrorMessage("");
|
|
23870
|
-
setDiscountAppliedMessage(
|
|
23917
|
+
setDiscountAppliedMessage(null);
|
|
23871
23918
|
setTotalAmount("");
|
|
23872
23919
|
};
|
|
23873
23920
|
const handleSavedCardDiscount = async (identifier, hasDiscount) => {
|
|
@@ -23886,10 +23933,23 @@ const CardElement = /*#__PURE__*/(0,react.forwardRef)(({
|
|
|
23886
23933
|
} = res.data;
|
|
23887
23934
|
const discountedAmount = formatAmountBasedOnCurrency_formatAmountBasedOnCurrency(discounted_amount_cents, currency);
|
|
23888
23935
|
const totalAmount = formatAmountBasedOnCurrency_formatAmountBasedOnCurrency(discount_amount_cents, currency);
|
|
23889
|
-
if (
|
|
23890
|
-
|
|
23891
|
-
|
|
23892
|
-
|
|
23936
|
+
if (discount_amount_cents < 0) {
|
|
23937
|
+
setDiscountErrorMessage(t('DISCOUNT_EXCEEDS_ORDER'));
|
|
23938
|
+
} else if (discounted_amount_cents > 0) {
|
|
23939
|
+
setDiscountAppliedMessage(/*#__PURE__*/(0,jsx_runtime.jsx)(Trans_Trans, {
|
|
23940
|
+
ns: "card",
|
|
23941
|
+
i18nKey: "DISCOUNT_APPLIED",
|
|
23942
|
+
values: {
|
|
23943
|
+
currency: tPaymentLayout(displayCurrency),
|
|
23944
|
+
amount: discountedAmount
|
|
23945
|
+
},
|
|
23946
|
+
components: {
|
|
23947
|
+
span: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
23948
|
+
style: {
|
|
23949
|
+
fontFamily: currencyFontFamily
|
|
23950
|
+
}
|
|
23951
|
+
})
|
|
23952
|
+
}
|
|
23893
23953
|
}));
|
|
23894
23954
|
setTotalAmount(totalAmount);
|
|
23895
23955
|
}
|
|
@@ -25888,6 +25948,9 @@ function TabbyViewTwo(props) {
|
|
|
25888
25948
|
w-full border rounded-lg border-solid overflow-hidden
|
|
25889
25949
|
${errors['email'] ? 'border-red-300' : 'border-gray-300'}
|
|
25890
25950
|
`,
|
|
25951
|
+
style: Object.assign({}, customStyle, {
|
|
25952
|
+
direction: "ltr"
|
|
25953
|
+
}),
|
|
25891
25954
|
children: /*#__PURE__*/_jsx(FormInput, {
|
|
25892
25955
|
icon: /*#__PURE__*/_jsx("img", {
|
|
25893
25956
|
className: "",
|
|
@@ -25897,10 +25960,7 @@ function TabbyViewTwo(props) {
|
|
|
25897
25960
|
formRegister: emailRegister,
|
|
25898
25961
|
error: errors['email'],
|
|
25899
25962
|
name: 'email',
|
|
25900
|
-
placeholder: 'mail@example.com'
|
|
25901
|
-
customStyle: {
|
|
25902
|
-
direction: langDirection
|
|
25903
|
-
}
|
|
25963
|
+
placeholder: 'mail@example.com'
|
|
25904
25964
|
})
|
|
25905
25965
|
}), errors['email'] && /*#__PURE__*/_jsx("p", {
|
|
25906
25966
|
className: 'text-sm pl-4 text-red-600',
|
|
@@ -32091,7 +32151,7 @@ function inherits_inherits(t, e) {
|
|
|
32091
32151
|
|
|
32092
32152
|
|
|
32093
32153
|
function possibleConstructorReturn_possibleConstructorReturn(t, e) {
|
|
32094
|
-
if (e && ("object" ==
|
|
32154
|
+
if (e && ("object" == _typeof(e) || "function" == typeof e)) return e;
|
|
32095
32155
|
if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
|
|
32096
32156
|
return assertThisInitialized_assertThisInitialized(t);
|
|
32097
32157
|
}
|
|
@@ -32779,7 +32839,7 @@ var Translator = function (_EventEmitter) {
|
|
|
32779
32839
|
value: function translate(keys, options, lastKey) {
|
|
32780
32840
|
var _this2 = this;
|
|
32781
32841
|
|
|
32782
|
-
if (
|
|
32842
|
+
if (_typeof(options) !== 'object' && this.options.overloadTranslationOptionHandler) {
|
|
32783
32843
|
options = this.options.overloadTranslationOptionHandler(arguments);
|
|
32784
32844
|
}
|
|
32785
32845
|
|
|
@@ -34296,11 +34356,11 @@ function get() {
|
|
|
34296
34356
|
appendNamespaceToCIMode: false,
|
|
34297
34357
|
overloadTranslationOptionHandler: function handle(args) {
|
|
34298
34358
|
var ret = {};
|
|
34299
|
-
if (
|
|
34359
|
+
if (_typeof(args[1]) === 'object') ret = args[1];
|
|
34300
34360
|
if (typeof args[1] === 'string') ret.defaultValue = args[1];
|
|
34301
34361
|
if (typeof args[2] === 'string') ret.tDescription = args[2];
|
|
34302
34362
|
|
|
34303
|
-
if (
|
|
34363
|
+
if (_typeof(args[2]) === 'object' || _typeof(args[3]) === 'object') {
|
|
34304
34364
|
var options = args[3] || args[2];
|
|
34305
34365
|
Object.keys(options).forEach(function (key) {
|
|
34306
34366
|
ret[key] = options[key];
|
|
@@ -34755,7 +34815,7 @@ var I18n = function (_EventEmitter) {
|
|
|
34755
34815
|
var fixedT = function fixedT(key, opts) {
|
|
34756
34816
|
var options;
|
|
34757
34817
|
|
|
34758
|
-
if (
|
|
34818
|
+
if (_typeof(opts) !== 'object') {
|
|
34759
34819
|
for (var _len3 = arguments.length, rest = new Array(_len3 > 2 ? _len3 - 2 : 0), _key3 = 2; _key3 < _len3; _key3++) {
|
|
34760
34820
|
rest[_key3 - 2] = arguments[_key3];
|
|
34761
34821
|
}
|
|
@@ -34983,17 +35043,17 @@ const ar_namespaceObject = /*#__PURE__*/JSON.parse('{"PAYMENTS_LIST_TITLE":"How
|
|
|
34983
35043
|
;// ../../localization/apps/flash/payments-list/ur.json
|
|
34984
35044
|
const ur_namespaceObject = /*#__PURE__*/JSON.parse('{"PAYMENTS_LIST_TITLE":"How would you like to pay?","ACTION_BTN":"Proceed to payment","PAY_ANOTHER_WAY":"Or pay another way","PAYMENT_METHOD":"Payment method"}');
|
|
34985
35045
|
;// ../../localization/apps/flash/card/en.json
|
|
34986
|
-
const card_en_namespaceObject = /*#__PURE__*/JSON.parse('{"FILL_CARD":"Enter Card Details","OTP_TITLE":"OTP verification","LOADING_MODAL_MESSAGE":"Processing your payment, Please wait...","ERR_MSG_INVALID_DATA":"The given data is not valid please check your information","ERR_MSG_EXCEEDED_TRIALS":"The payment session ends after 3 unsuccessful trials. You will be redirected to the website. You can start a new checkout session with Paymob","ERR_MSG_ALREADY_PROCESSED":"This payment was already processed with status pending","ERR_MSG_INVALID_OTP":"This OTP is not valid","ERR_MSG_DECLINED":"Payment is declined","ERR_MSG_EXPIRED":"Looks like this payment was expired perhaps you should create a new one","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","ROUNDING_OFF_VISA":"For Visa Cards, Order Amount will be rounded off to 2 decimal places.","DISCOUNT_APPLIED":"Discount of {{currency}} {{amount}} applied successfully","DISCOUNT_REACHED_LIMIT":"You\'ve used up your card’s limit on all the discounts you are eligible for. Please use another card or proceed with your purchase at the regular price"}');
|
|
35046
|
+
const card_en_namespaceObject = /*#__PURE__*/JSON.parse('{"FILL_CARD":"Enter Card Details","OTP_TITLE":"OTP verification","LOADING_MODAL_MESSAGE":"Processing your payment, Please wait...","ERR_MSG_INVALID_DATA":"The given data is not valid please check your information","ERR_MSG_EXCEEDED_TRIALS":"The payment session ends after 3 unsuccessful trials. You will be redirected to the website. You can start a new checkout session with Paymob","ERR_MSG_ALREADY_PROCESSED":"This payment was already processed with status pending","ERR_MSG_INVALID_OTP":"This OTP is not valid","ERR_MSG_DECLINED":"Payment is declined","ERR_MSG_EXPIRED":"Looks like this payment was expired perhaps you should create a new one","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","ROUNDING_OFF_VISA":"For Visa Cards, Order Amount will be rounded off to 2 decimal places.","DISCOUNT_APPLIED":"Discount of <span>{{currency}}</span> {{amount}} applied successfully","DISCOUNT_REACHED_LIMIT":"You\'ve used up your card’s limit on all the discounts you are eligible for. Please use another card or proceed with your purchase at the regular price","DISCOUNT_EXCEEDS_ORDER":"Discount Amount is greater than Order Amount. Please Proceed without discount"}');
|
|
34987
35047
|
;// ../../localization/apps/flash/card/ar.json
|
|
34988
|
-
const card_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"FILL_CARD":"Enter Card Details","OTP_TITLE":"OTP verification","LOADING_MODAL_MESSAGE":"Processing your payment, Please wait...","ERR_MSG_INVALID_DATA":"The given data is not valid please check your information","ERR_MSG_EXCEEDED_TRIALS":".تنتهي جلسة الدفع بعد 3 محاولات غير ناجحة، سيتم تحويلك إلى الموقع الإلكتروني، يمكنك بدء جلسة دفع جديدة مع باي موب","ERR_MSG_ALREADY_PROCESSED":".تمت عملية الدفع بالفعل وهي حاليا قيد الإنتظار","ERR_MSG_INVALID_OTP":"This OTP is not valid","ERR_MSG_DECLINED":"تم رفض عملية الدفع","ERR_MSG_EXPIRED":".يبدو أن مهلة الدفع قد انتهت، من فضلك أعد المحاولة","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"!حدث خطأ ما","ROUNDING_OFF_VISA":"For Visa Cards, Order Amount will be rounded off to 2 decimal places.","DISCOUNT_APPLIED":"
|
|
35048
|
+
const card_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"FILL_CARD":"Enter Card Details","OTP_TITLE":"OTP verification","LOADING_MODAL_MESSAGE":"Processing your payment, Please wait...","ERR_MSG_INVALID_DATA":"The given data is not valid please check your information","ERR_MSG_EXCEEDED_TRIALS":".تنتهي جلسة الدفع بعد 3 محاولات غير ناجحة، سيتم تحويلك إلى الموقع الإلكتروني، يمكنك بدء جلسة دفع جديدة مع باي موب","ERR_MSG_ALREADY_PROCESSED":".تمت عملية الدفع بالفعل وهي حاليا قيد الإنتظار","ERR_MSG_INVALID_OTP":"This OTP is not valid","ERR_MSG_DECLINED":"تم رفض عملية الدفع","ERR_MSG_EXPIRED":".يبدو أن مهلة الدفع قد انتهت، من فضلك أعد المحاولة","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"!حدث خطأ ما","ROUNDING_OFF_VISA":"For Visa Cards, Order Amount will be rounded off to 2 decimal places.","DISCOUNT_APPLIED":"تم تطبيق خصم <span>{{currency}}</span> {{amount}} بنجاح","DISCOUNT_REACHED_LIMIT":"لقد استخدمت الحد الأقصى لبطاقتك على جميع الخصومات التي يحق لك الحصول عليها. يرجى استخدام بطاقة أخرى أو المتابعة بالشراء بالسعر العادي","DISCOUNT_EXCEEDS_ORDER":"قيمة الخصم أكبر من قيمة الطلب. يرجى المتابعة بدون خصم"}');
|
|
34989
35049
|
;// ../../localization/apps/flash/card/ur.json
|
|
34990
|
-
const card_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"FILL_CARD":"Enter Card Details","OTP_TITLE":"OTP verification","LOADING_MODAL_MESSAGE":"Processing your payment, Please wait...","ERR_MSG_INVALID_DATA":"The given data is not valid please check your information","ERR_MSG_EXCEEDED_TRIALS":"The payment session ends after 3 unsuccessful trials. You will be redirected to the website. You can start a new checkout session with Paymob","ERR_MSG_ALREADY_PROCESSED":"This payment was already processed with status pending","ERR_MSG_INVALID_OTP":"This OTP is not valid","ERR_MSG_DECLINED":"Payment is declined","ERR_MSG_EXPIRED":"Looks like this payment was expired perhaps you should create a new one","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","ROUNDING_OFF_VISA":"For Visa Cards, Order Amount will be rounded off to 2 decimal places.","DISCOUNT_APPLIED":"Discount of {{currency}} {{amount}} applied successfully","DISCOUNT_REACHED_LIMIT":"You\'ve used up your card’s limit on all the discounts you are eligible for. Please use another card or proceed with your purchase at the regular price"}');
|
|
35050
|
+
const card_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"FILL_CARD":"Enter Card Details","OTP_TITLE":"OTP verification","LOADING_MODAL_MESSAGE":"Processing your payment, Please wait...","ERR_MSG_INVALID_DATA":"The given data is not valid please check your information","ERR_MSG_EXCEEDED_TRIALS":"The payment session ends after 3 unsuccessful trials. You will be redirected to the website. You can start a new checkout session with Paymob","ERR_MSG_ALREADY_PROCESSED":"This payment was already processed with status pending","ERR_MSG_INVALID_OTP":"This OTP is not valid","ERR_MSG_DECLINED":"Payment is declined","ERR_MSG_EXPIRED":"Looks like this payment was expired perhaps you should create a new one","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","ROUNDING_OFF_VISA":"For Visa Cards, Order Amount will be rounded off to 2 decimal places.","DISCOUNT_APPLIED":"Discount of <span>{{currency}}</span> {{amount}} applied successfully","DISCOUNT_REACHED_LIMIT":"You\'ve used up your card’s limit on all the discounts you are eligible for. Please use another card or proceed with your purchase at the regular price","DISCOUNT_EXCEEDS_ORDER":"Discount Amount is greater than Order Amount. Please Proceed without discount"}');
|
|
34991
35051
|
;// ../../localization/apps/flash/payment-layout/en.json
|
|
34992
|
-
const payment_layout_en_namespaceObject = /*#__PURE__*/JSON.parse('{"TOTAL_AMOUNT":"Total Amount","ORDER_AMOUNT":"Order Amount","QUANTITY":"Quantity","BILLING_ADDRESS":"Billing Address","SHIPPING_ADDRESS":"Shipping Address","SUB_TOTAL":"Subtotal","VAT":"VAT","FEES":"Fees","DISCOUNT_AMOUNT":"Discount Amount","INSTALLMENT_PLAN":"Installment Plan","TENURE":"Tenure","FINANCE_AMOUNT":"Finance Amount","DOWN_PAYMENT":"Down Payment","ADMIN_FEES":"Admin Fees","TOTAL":"Total","CASH_BACK":"Cashback","FLIP":"Flip","CARD_NUMBER":"Card number","SECURE_PAYMENT":"Secure payment","ORDER_DETAILS":"View order details","PURCHASE_FEE":"Purchase Fee","
|
|
35052
|
+
const payment_layout_en_namespaceObject = /*#__PURE__*/JSON.parse('{"TOTAL_AMOUNT":"Total Amount","ORDER_AMOUNT":"Order Amount","QUANTITY":"Quantity","BILLING_ADDRESS":"Billing Address","SHIPPING_ADDRESS":"Shipping Address","SUB_TOTAL":"Subtotal","VAT":"VAT","FEES":"Fees","DISCOUNT_AMOUNT":"Discount Amount","INSTALLMENT_PLAN":"Installment Plan","TENURE":"Tenure","FINANCE_AMOUNT":"Finance Amount","DOWN_PAYMENT":"Down Payment","ADMIN_FEES":"Admin Fees","TOTAL":"Total","CASH_BACK":"Cashback","FLIP":"Flip","CARD_NUMBER":"Card number","SECURE_PAYMENT":"Secure payment","ORDER_DETAILS":"View order details","PAYMENT_DETAILS":"Payment details","PURCHASE_FEE":"Purchase Fee","DISCOUNT_DETAILS":"{{percentage}}% Discount - {{currency}} {{discount}} saved","瘝":"瘝","AFN":"AFN","ALL":"ALL","AMD":"AMD","ANG":"ANG","AOA":"AOA","ARS":"ARS","AUD":"AUD","AWG":"AWG","AZN":"AZN","BAM":"BAM","BBD":"BBD","BDT":"BDT","BGN":"BGN","BHD":"BHD","BIF":"BIF","BMD":"BMD","BND":"BND","BOB":"BOB","BRL":"BRL","BSD":"BSD","BTN":"BTN","BWP":"BWP","BYN":"BYN","BZD":"BZD","CAD":"CAD","CDF":"CDF","CHF":"CHF","CKD":"CKD","CLP":"CLP","CNY":"CNY","COP":"COP","CRC":"CRC","CUC":"CUC","CUP":"CUP","CVE":"CVE","CZK":"CZK","DJF":"DJF","DKK":"DKK","DOP":"DOP","DZD":"DZD","EGP":"EGP","EHP":"EHP","ERN":"ERN","ETB":"ETB","EUR":"EUR","FJD":"FJD","FKP":"FKP","FOK":"FOK","GBP":"GBP","GEL":"GEL","GGP":"GGP","GHS":"GHS","GIP":"GIP","GMD":"GMD","GNF":"GNF","GTQ":"GTQ","GYD":"GYD","HKD":"HKD","HNL":"HNL","HRK":"HRK","HTG":"HTG","HUF":"HUF","IDR":"IDR","ILS":"ILS","IMP":"IMP","INR":"INR","IQD":"IQD","IRR":"IRR","ISK":"ISK","JEP":"JEP","JMD":"JMD","JOD":"JOD","JPY":"JPY","KES":"KES","KGS":"KGS","KHR":"KHR","KID":"KID","KMF":"KMF","KPW":"KPW","KRW":"KRW","KWD":"KWD","KYD":"KYD","KZT":"KZT","LAK":"LAK","LBP":"LBP","LKR":"LKR","LRD":"LRD","LSL":"LSL","LYD":"LYD","MAD":"MAD","MDL":"MDL","MGA":"MGA","MKD":"MKD","MMK":"MMK","MNT":"MNT","MOP":"MOP","MRU":"MRU","MUR":"MUR","MVR":"MVR","MWK":"MWK","MXN":"MXN","MYR":"MYR","MZN":"MZN","NAD":"NAD","NGN":"NGN","NIO":"NIO","NOK":"NOK","NPR":"NPR","NZD":"NZD","OMR":"OMR","PAB":"PAB","PEN":"PEN","PGK":"PGK","PHP":"PHP","PKR":"PKR","PLN":"PLN","PND":"PND","PRB":"PRB","PYG":"PYG","QAR":"QAR","RON":"RON","RSD":"RSD","RUB":"RUB","RWF":"RWF","瘟":"瘟","SBD":"SBD","SCR":"SCR","SDG":"SDG","SEK":"SEK","SGD":"SGD","SHP":"SHP","SLL":"SLL","SLS":"SLS","SOS":"SOS","SRD":"SRD","SSP":"SSP","STN":"STN","SVC":"SVC","SYP":"SYP","SZL":"SZL","THB":"THB","TJS":"TJS","TMT":"TMT","TND":"TND","TOP":"TOP","TRY":"TRY","TTD":"TTD","TVD":"TVD","TWD":"TWD","TZS":"TZS","UAH":"UAH","UGX":"UGX","USD":"USD","UYU":"UYU","UZS":"UZS","VED":"VED","VES":"VES","VND":"VND","VUV":"VUV","WST":"WST","XAF":"XAF","XCD":"XCD","XOF":"XOF","XPF":"XPF","YER":"YER","ZAR":"ZAR","ZMW":"ZMW","ZWB":"ZWB","ZWL":"ZWL","Abkhazia":"Abkhazia","Artsakh":"Artsakh"}');
|
|
34993
35053
|
;// ../../localization/apps/flash/payment-layout/ar.json
|
|
34994
|
-
const payment_layout_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"TOTAL_AMOUNT":"الإجمالي","ORDER_AMOUNT":"
|
|
35054
|
+
const payment_layout_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"TOTAL_AMOUNT":"الإجمالي","ORDER_AMOUNT":"مبلغ الطلب","QUANTITY":"الكمية","BILLING_ADDRESS":"عنوان إرسال الفواتير","SHIPPING_ADDRESS":"عنوان إرسال الشحن","SUB_TOTAL":"المبلغ","VAT":"ضريبة القيمة المضافة","FEES":"الرسوم","DISCOUNT_AMOUNT":"قيمة الخصم","INSTALLMENT_PLAN":"Installment Plan","TENURE":"Tenure","FINANCE_AMOUNT":"Finance Amount","DOWN_PAYMENT":"Down Payment","ADMIN_FEES":"رسوم إدارية","TOTAL":"الإجمالي","CASH_BACK":"Cashback","FLIP":"Flip","CARD_NUMBER":"Card number","SECURE_PAYMENT":"دفع آمن","ORDER_DETAILS":"عرض تفاصيل الطلب","PAYMENT_DETAILS":"تفاصيل الدفع","PURCHASE_FEE":"Purchase Fee","DISCOUNT_DETAILS":"خصم {{percentage}}% - تم توفير {{currency}} {{discount}}","瘝":"瘝","AFN":"أفغاني","ALL":"ليك ألباني","AMD":"درام أرميني","ANG":"غيلدر هولندي","AOA":"كوانزا أنغولي","ARS":"بيزو أرجنتيني","AUD":"دولار أسترالي","AWG":"فلورن أروبي","AZN":"مانات أذربيجاني","BAM":"مارك بوسني قابل للتحويل","BBD":"دولار باربادوسي","BDT":"تاكا بنغلاديشي","BGN":"ليف بلغاري","BHD":"دينار بحريني","BIF":"فرنك بوروندي","BMD":"دولار برمودي","BND":"دولار بروناي","BOB":"بوليفيانو بوليفي","BRL":"ريال برازيلي","BSD":"دولار بهامي","BTN":"نغولترم بوتاني","BWP":"بولا بوتسواني","BYN":"روبل بيلاروسي","BZD":"دولار بليزي","CAD":"دولار كندي","CDF":"فرنك كونغولي","CHF":"فرنك سويسري","CKD":"بيزو شيلي ","CLP":"بيزو شيلي","CNY":"يوان صيني","COP":"بيزو كولومبي","CRC":"كولون كوستاريكي","CUC":"بيزو كوبي قابل للتحويل","CUP":"بيزو كوبي","CVE":"إسكودو كاب فيردي","CZK":"كورونا تشيكية","DJF":"فرنك جيبوتي","DKK":"كرونة دنماركية","DOP":"بيزو دومينيكاني","DZD":"دينار جزائري","EGP":"جنيه مصري","EHP":"بيزيتا إسبانية ","ERN":"ناكفا إريتري","ETB":"بير إثيوبي","EUR":"يورو","FJD":"دولار فيجي","FKP":"جنيه جزر فوكلاند","FOK":"كرونة جزر فارو","GBP":"جنيه إسترليني","GEL":"لاري جورجي","GGP":"جنيه غيرنسي","GHS":"سيدي غاني","GIP":"جنيه جبل طارق","GMD":"دلاسي غامبي","GNF":"فرنك غيني","GTQ":"كوتزال غواتيمالي","GYD":"دولار غياني","HKD":"دولار هونغ كونغ","HNL":"لمبيرة هندوراسي","HRK":"كونا كرواتي","HTG":"غوردي هايتي","HUF":"فورينت مجري","IDR":"روبية إندونيسية","ILS":"شيكل إسرائيلي جديد","IMP":"جنيه مانكسي","INR":"روبية هندية","IQD":"دينار عراقي","IRR":"ريال إيراني","ISK":"كرونة آيسلندية","JEP":"جنيه جيرزي","JMD":"دولار جامايكي","JOD":"دينار أردني","JPY":"ين ياباني","KES":"شيلينغ كيني","KGS":"سوم قيرغيزستاني","KHR":"رييل كمبودي","KID":"دولار كيريباتي","KMF":"فرنك قمري","KPW":"وون كوري شمالي","KRW":"وون كوري جنوبي","KWD":"دينار كويتي","KYD":"دولار جزر كايمان","KZT":"تينغ كازاخستاني","LAK":"كيب لاوي","LBP":"جنيه لبناني","LKR":"روبية سريلانكية","LRD":"دولار ليبيري","LSL":"لوتي ليسوتي","LYD":"دينار ليبي","MAD":"درهم مغربي","MDL":"ليو مولدوفي","MGA":"أرياري مدغشقري","MKD":"دينار مقدوني","MMK":"كيات ميانماري","MNT":"توغروغ منغولي","MOP":"باتاكا ماكاوي","MRU":"أوقية موريتانية","MUR":"روبية موريشيوسية","MVR":"روفيا مالديفية","MWK":"كواشا مالاوي","MXN":"بيزو مكسيكي","MYR":"رينغيت ماليزي","MZN":"ميتكيال موزمبيقي","NAD":"دولار ناميبي","NGN":"نايرا نيجيري","NIO":"كوردوبا نيكاراغوي","NOK":"كرونة نرويجية","NPR":"روبية نيبالية","NZD":"دولار نيوزيلندي","OMR":"ريال عماني","PAB":"بالبوا بنمي","PEN":"سول بيروفي","PGK":"كينا بابوا غينيا الجديدة","PHP":"بيزو فلبيني","PKR":"روبية باكستانية","PLN":"زلوتي بولندي","PND":"جنيه بوندلندي","PRB":"بوليفار فنزويلي","PYG":"غواراني باراغواي","QAR":"ريال قطري","RON":"ليو روماني","RSD":"دينار صربي","RUB":"روبل روسي","RWF":"فرنك رواندي","瘟":"瘟","SBD":"دولار جزر سليمان","SCR":"روبية سيشلية","SDG":"جنيه سوداني","SEK":"كرونة سويدية","SGD":"دولار سنغافوري","SHP":"جنيه سانت هيليني","SLL":"ليون سيراليوني","SLS":"SLS","SOS":"شلن صومالي","SRD":"دولار سورينامي","SSP":"جنيه جنوب سوداني","STN":"دوبرا ساو تومي وبرينسيب","SVC":"كولون سلفادوري","SYP":"ليرة سورية","SZL":"ليلانجيني إسواتيني","THB":"بات تايلاندي","TJS":"سوموني طاجيكي","TMT":"مانات تركماني","TND":"دينار تونسي","TOP":"بانغا تونغي","TRY":"ليرة تركية","TTD":"دولار ترينيدادي","TVD":"دولار تيموري","TWD":"دولار تايواني جديد","TZS":"شلن تنزاني","UAH":"هريفنيا أوكرانية","UGX":"شلن أوغندي","USD":"دولار أمريكي","UYU":"بيزو أوروغواي","UZS":"سوم أوزبكي","VED":"بوليفار فنزويلي قديم","VES":"بوليفار فنزويلي حديث","VND":"دونغ فيتنامي","VUV":"فاتو فانواتو","WST":"تالا ساموا","XAF":"فرنك وسط أفريقي","XCD":"دولار شرق كاريبي","XOF":"فرنك غرب أفريقي","XPF":"فرنك المحيط الهادئ","YER":"ريال يمني","ZAR":"راند جنوب أفريقي","ZMW":"كواشا زامبي","ZWB":"دولار زيمبابوي","ZWL":"دولار زيمبابوي","Abkhazia":"أبخازيا","Artsakh":"آرتساخ"}');
|
|
34995
35055
|
;// ../../localization/apps/flash/payment-layout/ur.json
|
|
34996
|
-
const payment_layout_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"TOTAL_AMOUNT":"Total Amount","ORDER_AMOUNT":"Order Amount","QUANTITY":"Quantity","BILLING_ADDRESS":"Billing Address","SHIPPING_ADDRESS":"Shipping Address","SUB_TOTAL":"Subtotal","VAT":"VAT","FEES":"Fees","DISCOUNT_AMOUNT":"Discount Amount","INSTALLMENT_PLAN":"Installment Plan","TENURE":"Tenure","FINANCE_AMOUNT":"Finance Amount","DOWN_PAYMENT":"Down Payment","ADMIN_FEES":"Admin Fees","TOTAL":"Total","CASH_BACK":"Cashback","FLIP":"Flip","CARD_NUMBER":"Card number","SECURE_PAYMENT":"Secure payment","ORDER_DETAILS":"View order details","
|
|
35056
|
+
const payment_layout_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"TOTAL_AMOUNT":"Total Amount","ORDER_AMOUNT":"Order Amount","QUANTITY":"Quantity","BILLING_ADDRESS":"Billing Address","SHIPPING_ADDRESS":"Shipping Address","SUB_TOTAL":"Subtotal","VAT":"VAT","FEES":"Fees","DISCOUNT_AMOUNT":"Discount Amount","INSTALLMENT_PLAN":"Installment Plan","TENURE":"Tenure","FINANCE_AMOUNT":"Finance Amount","DOWN_PAYMENT":"Down Payment","ADMIN_FEES":"Admin Fees","TOTAL":"Total","CASH_BACK":"Cashback","FLIP":"Flip","CARD_NUMBER":"Card number","SECURE_PAYMENT":"Secure payment","ORDER_DETAILS":"View order details","PAYMENT_DETAILS":"Payment details","PURCHASE_FEE":"Purchase Fee","DISCOUNT_DETAILS":"{{percentage}}% Discount - {{currency}} {{discount}} saved"}');
|
|
34997
35057
|
;// ../../localization/apps/flash/bank-installment/en.json
|
|
34998
35058
|
const bank_installment_en_namespaceObject = /*#__PURE__*/JSON.parse('{"ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong"}');
|
|
34999
35059
|
;// ../../localization/apps/flash/bank-installment/ar.json
|
|
@@ -35079,11 +35139,11 @@ const postpay_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"POSTPAY_TITLE":"Pa
|
|
|
35079
35139
|
;// ../../localization/apps/flash/postpay/ur.json
|
|
35080
35140
|
const postpay_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"POSTPAY_TITLE":"Pay with Postpay","ERR_MSG_INVALID_DATA":"The given data is not valid please check your information","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token"}');
|
|
35081
35141
|
;// ../../localization/apps/flash/wallet/en.json
|
|
35082
|
-
const wallet_en_namespaceObject = /*#__PURE__*/JSON.parse('{"WALLET_TITLE":"Enter phone number to pay by wallet","ACTION_BTN":"Pay","ERR_MSG_INVALID_DATA":"Mobile Number is not registered with the Wallet Provider","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","DISCOUNT_APPLIED":"Discount of {{currency}} {{amount}} applied successfully","DISCOUNT_REACHED_LIMIT":"You\'ve used up your wallet’s limit on all the discounts you are eligible for. Please use another wallet or proceed with your purchase at the regular price"}');
|
|
35142
|
+
const wallet_en_namespaceObject = /*#__PURE__*/JSON.parse('{"WALLET_TITLE":"Enter phone number to pay by wallet","ACTION_BTN":"Pay","ERR_MSG_INVALID_DATA":"Mobile Number is not registered with the Wallet Provider","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","DISCOUNT_APPLIED":"Discount of {{currency}} {{amount}} applied successfully","DISCOUNT_REACHED_LIMIT":"You\'ve used up your wallet’s limit on all the discounts you are eligible for. Please use another wallet or proceed with your purchase at the regular price","DISCOUNT_EXCEEDS_ORDER":"Discount Amount is greater than Order Amount. Please Proceed without discount"}');
|
|
35083
35143
|
;// ../../localization/apps/flash/wallet/ar.json
|
|
35084
|
-
const wallet_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"WALLET_TITLE":"Enter phone number to pay by wallet","ACTION_BTN":"Pay","ERR_MSG_INVALID_DATA":"Mobile Number is not registered with the Wallet Provider","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","DISCOUNT_APPLIED":"
|
|
35144
|
+
const wallet_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"WALLET_TITLE":"Enter phone number to pay by wallet","ACTION_BTN":"Pay","ERR_MSG_INVALID_DATA":"Mobile Number is not registered with the Wallet Provider","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","DISCOUNT_APPLIED":"تم تطبيق خصم {{currency}} {{amount}} بنجاح","DISCOUNT_REACHED_LIMIT":"You\'ve used up your wallet’s limit on all the discounts you are eligible for. Please use another wallet or proceed with your purchase at the regular price","DISCOUNT_EXCEEDS_ORDER":"قيمة الخصم أكبر من قيمة الطلب. يرجى المتابعة بدون خصم"}');
|
|
35085
35145
|
;// ../../localization/apps/flash/wallet/ur.json
|
|
35086
|
-
const wallet_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"WALLET_TITLE":"Enter phone number to pay by wallet","ACTION_BTN":"Pay","ERR_MSG_INVALID_DATA":"Mobile Number is not registered with the Wallet Provider","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","DISCOUNT_APPLIED":"Discount of {{currency}} {{amount}} applied successfully","DISCOUNT_REACHED_LIMIT":"You\'ve used up your wallet’s limit on all the discounts you are eligible for. Please use another wallet or proceed with your purchase at the regular price"}');
|
|
35146
|
+
const wallet_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"WALLET_TITLE":"Enter phone number to pay by wallet","ACTION_BTN":"Pay","ERR_MSG_INVALID_DATA":"Mobile Number is not registered with the Wallet Provider","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","DISCOUNT_APPLIED":"Discount of {{currency}} {{amount}} applied successfully","DISCOUNT_REACHED_LIMIT":"You\'ve used up your wallet’s limit on all the discounts you are eligible for. Please use another wallet or proceed with your purchase at the regular price","DISCOUNT_EXCEEDS_ORDER":"Discount Amount is greater than Order Amount. Please Proceed without discount"}');
|
|
35087
35147
|
;// ../../localization/apps/flash/premium/en.json
|
|
35088
35148
|
const premium_en_namespaceObject = /*#__PURE__*/JSON.parse('{"PREMIUM_TITLE":"Premium","IFRAME_INSTALMENT_PLAN":"","IFRAME_SUBMIT_BTN":"Continue","ERR_MSG_INVALID_DATA":"The given data is not valid please check your information","ERR_MSG_EXCEEDED_TRIALS":"The payment session ends after 3 unsuccessful trials.","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","ERR_MSG_UNAUTHORIZED":"Invalid or expired payment token","ERR_MSG_INVALID_OTP":"This OTP is not valid"}');
|
|
35089
35149
|
;// ../../localization/apps/flash/premium/ar.json
|
|
@@ -35133,17 +35193,17 @@ const tab_element_en_namespaceObject = /*#__PURE__*/JSON.parse('{"SYMPL_ZERO_INT
|
|
|
35133
35193
|
;// ../../localization/apps/flash/tab-element/ur.json
|
|
35134
35194
|
const tab_element_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"SYMPL_ZERO_INTEREST":"0% interest on any card","OFFERS":"Offers","OFFER":"Offer"}');
|
|
35135
35195
|
;// ../../localization/libs/card/en.json
|
|
35136
|
-
const libs_card_en_namespaceObject = /*#__PURE__*/JSON.parse('{"CARD_INFO":"Card Information","CARDHOLDER_NAME":"Cardholder Name","CARD_NUMBER":"Card Number","CARD_NUMBER_NOT_VALID":"Card number is not valid","CARD_NUMBER_IS_REQUIRED":"Card number is required","CARD_EXPIRY":"Expiry (MM/YY)","CARD_EXPIRY_NOT_VALID":"Expiry date is not valid","CARD_EXPIRY_IS_REQUIRED":"Expiry date is required","AMEX_CVV_IS_REQUIRED":"4-digit CVV is required","CVV_IS_REQUIRED":"3-digit CVV is required","CARD_NAME":"Name on card","CARD_NAME_PLACEHOLDER":"ex. Abdullah Adel","CARD_NAME_NOT_VALID":"Card name is not valid","CARD_NAME_IS_REQUIRED":"Cardholder Name is required","NAME_IS_REQUIRED":"Name is required","EMAIL_IS_REQUIRED":"Email is required","EMAIL_NOT_VALID":"Email is not valid","PHONE_IS_REQUIRED":"Phone is required","PHONE_NOT_VALID":"Phone is not valid","SAVED_CARDS_TITLE":"Saved cards","SAVE_CARD":"Save card for future use","ADD_NEW_CARD_BTN":"New card","CARD_ACTION_BTN":"Pay","OTP_ACTION_BTN":"Verify OTP","CARD_NUMBER_PLACEHOLDER":"1234 1234 1234 1234","MOBILE_CARD_NUMBER_PLACEHOLDER":"Card number","OTP_HINT":"Please enter the 4-digit code sent to your mobile","CVV_MODAL_HEADER":"CVV","CVV_MODAL_VISA_HEADER":"Have Mastercard / Visa card?","CVV_MODAL_VISA_BODY":"It\'s a 3-digit code on the back of your card.","CVV_MODAL_AMEX_HEADER":"Have American Express card?","CVV_MODAL_AMEX_BODY":"It\'s a 4-digit number on the front, just above your credit card number","ERR_MSG_EXCEEDED_TRIALS":"The payment session ends after 3 unsuccessful trials. You will be redirected to the website. You can start a new checkout session with Paymob","ERR_MSG_ALREADY_PROCESSED":"This payment was already processed with status pending","ERR_MSG_DECLINED":"Payment is declined","ERR_MSG_EXPIRED":"Looks like this payment was expired perhaps you should create a new one","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","FORCE_SAVE_CARD":"Card Details would be saved for future use","ERR_MSG_ALREADY_PAID":"This order has already been paid","ERR_OMAN_NET_INVALID":"Oman Net Card can’t be used for transaction. Please use another card type.","VIEW_SAVED_CARDS":"View Saved Cards","DISCOUNT_APPLIED":"Discount of {{currency}} {{amount}} applied successfully"}');
|
|
35196
|
+
const libs_card_en_namespaceObject = /*#__PURE__*/JSON.parse('{"CARD_INFO":"Card Information","CARDHOLDER_NAME":"Cardholder Name","CARD_NUMBER":"Card Number","CARD_NUMBER_NOT_VALID":"Card number is not valid","CARD_NUMBER_IS_REQUIRED":"Card number is required","CARD_EXPIRY":"Expiry (MM/YY)","CARD_EXPIRY_NOT_VALID":"Expiry date is not valid","CARD_EXPIRY_IS_REQUIRED":"Expiry date is required","AMEX_CVV_IS_REQUIRED":"4-digit CVV is required","CVV_IS_REQUIRED":"3-digit CVV is required","CARD_NAME":"Name on card","CARD_NAME_PLACEHOLDER":"ex. Abdullah Adel","CARD_NAME_NOT_VALID":"Card name is not valid","CARD_NAME_IS_REQUIRED":"Cardholder Name is required","NAME_IS_REQUIRED":"Name is required","EMAIL_IS_REQUIRED":"Email is required","EMAIL_NOT_VALID":"Email is not valid","PHONE_IS_REQUIRED":"Phone is required","PHONE_NOT_VALID":"Phone is not valid","SAVED_CARDS_TITLE":"Saved cards","SAVE_CARD":"Save card for future use","ADD_NEW_CARD_BTN":"New card","CARD_ACTION_BTN":"Pay","OTP_ACTION_BTN":"Verify OTP","CARD_NUMBER_PLACEHOLDER":"1234 1234 1234 1234","MOBILE_CARD_NUMBER_PLACEHOLDER":"Card number","OTP_HINT":"Please enter the 4-digit code sent to your mobile","CVV_MODAL_HEADER":"CVV","CVV_MODAL_VISA_HEADER":"Have Mastercard / Visa card?","CVV_MODAL_VISA_BODY":"It\'s a 3-digit code on the back of your card.","CVV_MODAL_AMEX_HEADER":"Have American Express card?","CVV_MODAL_AMEX_BODY":"It\'s a 4-digit number on the front, just above your credit card number","ERR_MSG_EXCEEDED_TRIALS":"The payment session ends after 3 unsuccessful trials. You will be redirected to the website. You can start a new checkout session with Paymob","ERR_MSG_ALREADY_PROCESSED":"This payment was already processed with status pending","ERR_MSG_DECLINED":"Payment is declined","ERR_MSG_EXPIRED":"Looks like this payment was expired perhaps you should create a new one","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","FORCE_SAVE_CARD":"Card Details would be saved for future use","ERR_MSG_ALREADY_PAID":"This order has already been paid","ERR_OMAN_NET_INVALID":"Oman Net Card can’t be used for transaction. Please use another card type.","VIEW_SAVED_CARDS":"View Saved Cards","DISCOUNT_APPLIED":"Discount of <span>{{currency}}</span> {{amount}} applied successfully","DISCOUNT_EXCEEDS_ORDER":"Discount Amount is greater than Order Amount. Please Proceed without discount"}');
|
|
35137
35197
|
;// ../../localization/libs/card/ar.json
|
|
35138
|
-
const libs_card_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"CARD_INFO":"معلومات البطاقة","CARDHOLDER_NAME":"اسم حامل البطاقة","CARD_NUMBER":"رقم البطاقة","CARD_NUMBER_NOT_VALID":"رقم البطاقة غير صحيح","CARD_NUMBER_IS_REQUIRED":"رقم البطاقة مطلوب","CARD_EXPIRY":"تاريخ الصلاحية (شهر/سنة)","CARD_EXPIRY_NOT_VALID":"تاريخ الانتهاء غير صحيح","CARD_EXPIRY_IS_REQUIRED":"تاريخ الانتهاء مطلوب","AMEX_CVV_IS_REQUIRED":"4-digit CVV is required","CVV_IS_REQUIRED":"كود التحقق المكون من 3 أرقام مطلوب","CARD_NAME":"الاسم على البطاقة","CARD_NAME_PLACEHOLDER":"
|
|
35198
|
+
const libs_card_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"CARD_INFO":"معلومات البطاقة","CARDHOLDER_NAME":"اسم حامل البطاقة","CARD_NUMBER":"رقم البطاقة","CARD_NUMBER_NOT_VALID":"رقم البطاقة غير صحيح","CARD_NUMBER_IS_REQUIRED":"رقم البطاقة مطلوب","CARD_EXPIRY":"تاريخ الصلاحية (شهر/سنة)","CARD_EXPIRY_NOT_VALID":"تاريخ الانتهاء غير صحيح","CARD_EXPIRY_IS_REQUIRED":"تاريخ الانتهاء مطلوب","AMEX_CVV_IS_REQUIRED":"4-digit CVV is required","CVV_IS_REQUIRED":"كود التحقق المكون من 3 أرقام مطلوب","CARD_NAME":"الاسم على البطاقة","CARD_NAME_PLACEHOLDER":"ex. Abdullah Adel","CARD_NAME_NOT_VALID":"اسم البطاقة غير صحيح","CARD_NAME_IS_REQUIRED":"اسم حامل البطاقة مطلوب","NAME_IS_REQUIRED":"الاسم مطلوب","EMAIL_IS_REQUIRED":"البريد الإلكتروني مطلوب","EMAIL_NOT_VALID":"البريد الإلكتروني غير صحيح","PHONE_IS_REQUIRED":"رقم الهاتف مطلوب","PHONE_NOT_VALID":"رقم الهاتف غير صحيح","SAVED_CARDS_TITLE":"البطاقات المحفوظة","SAVE_CARD":"حفظ البطاقة للاستخدام في المستقبل","ADD_NEW_CARD_BTN":"بطاقة جديدة","CARD_ACTION_BTN":"ادفع","OTP_ACTION_BTN":"تحقق من كود الـ OTP","CARD_NUMBER_PLACEHOLDER":"1234 1234 1234 1234","MOBILE_CARD_NUMBER_PLACEHOLDER":"رقم البطاقة","OTP_HINT":"برجاء إدخال الكود المكون من 4 أرقام المرسل إلى موبايلك","CVV_MODAL_HEADER":"CVV","CVV_MODAL_VISA_HEADER":"هل لديك بطاقة ماستركارد / فيزا؟","CVV_MODAL_VISA_BODY":".إنه رمز مكون من 3 أرقام على ظهر بطاقتك","CVV_MODAL_AMEX_HEADER":"هل لديك بطاقة أمريكان إكسبريس؟","CVV_MODAL_AMEX_BODY":".إنه رقم مكون من 4 أرقام في الأمام، فوق رقم بطاقتك الائتمانية","ERR_MSG_EXCEEDED_TRIALS":".تنتهي جلسة الدفع بعد 3 محاولات غير ناجحة، سيتم تحويلك إلى الموقع الإلكتروني، يمكنك بدء جلسة دفع جديدة مع باي موب","ERR_MSG_ALREADY_PROCESSED":".تمت عملية الدفع بالفعل وهي حاليا قيد الإنتظار","ERR_MSG_DECLINED":"تم رفض عملية الدفع","ERR_MSG_EXPIRED":".يبدو أن مهلة الدفع قد انتهت، من فضلك أعد المحاولة","ERR_MSG_SOMETHING_WENT_WRONG":"!حدث خطأ ما","FORCE_SAVE_CARD":"سيتم حفظ بيانات البطاقة للاستخدام في المستقبل","ERR_MSG_ALREADY_PAID":"تمت عملية الدفع لهذا الطلب بالفعل","ERR_OMAN_NET_INVALID":"Oman Net Card can’t be used for transaction. Please use another card type.","DISCOUNT_APPLIED":"تم تطبيق خصم <span>{{currency}}</span> {{amount}} بنجاح","VIEW_SAVED_CARDS":"عرض البطاقات المحفوظة","DISCOUNT_EXCEEDS_ORDER":"قيمة الخصم أكبر من قيمة الطلب. يرجى المتابعة بدون خصم"}');
|
|
35139
35199
|
;// ../../localization/libs/card/ur.json
|
|
35140
|
-
const libs_card_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"CARD_INFO":"Card Information","CARDHOLDER_NAME":"Cardholder Name","CARD_NUMBER":"Card Number","CARD_NUMBER_NOT_VALID":"Card number is not valid","CARD_NUMBER_IS_REQUIRED":"Card number is required","CARD_EXPIRY":"Expiry (MM/YY)","CARD_EXPIRY_NOT_VALID":"Expiry date is not valid","CARD_EXPIRY_IS_REQUIRED":"Expiry date is required","AMEX_CVV_IS_REQUIRED":"4-digit CVV is required","CVV_IS_REQUIRED":"3-digit CVV is required","CARD_NAME":"Name on card","CARD_NAME_PLACEHOLDER":"ex. Abdullah Adel","CARD_NAME_NOT_VALID":"Card name is not valid","CARD_NAME_IS_REQUIRED":"Cardholder Name is required","NAME_IS_REQUIRED":"Name is required","EMAIL_IS_REQUIRED":"Email is required","EMAIL_NOT_VALID":"Email is not valid","PHONE_IS_REQUIRED":"Phone is required","PHONE_NOT_VALID":"Phone is not valid","SAVED_CARDS_TITLE":"Saved cards","SAVE_CARD":"Save card for future use","ADD_NEW_CARD_BTN":"New card","CARD_ACTION_BTN":"Pay","OTP_ACTION_BTN":"Verify OTP","CARD_NUMBER_PLACEHOLDER":"1234 1234 1234 1234","MOBILE_CARD_NUMBER_PLACEHOLDER":"Card number","OTP_HINT":"Please enter the 4-digit code sent to your mobile","CVV_MODAL_HEADER":"CVV","CVV_MODAL_VISA_HEADER":"Have Mastercard / Visa card?","CVV_MODAL_VISA_BODY":"It\'s a 3-digit code on the back of your card.","CVV_MODAL_AMEX_HEADER":"Have American Express card?","CVV_MODAL_AMEX_BODY":"It\'s a 4-digit number on the front, just above your credit card number","ERR_MSG_EXCEEDED_TRIALS":"The payment session ends after 3 unsuccessful trials. You will be redirected to the website. You can start a new checkout session with Paymob","ERR_MSG_ALREADY_PROCESSED":"This payment was already processed with status pending","ERR_MSG_DECLINED":"Payment is declined","ERR_MSG_EXPIRED":"Looks like this payment was expired perhaps you should create a new one","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","FORCE_SAVE_CARD":"Card Details would be saved for future use","ERR_MSG_ALREADY_PAID":"This order has already been paid","ERR_OMAN_NET_INVALID":"Oman Net Card can’t be used for transaction. Please use another card type.","VIEW_SAVED_CARDS":"View Saved Cards","DISCOUNT_APPLIED":"Discount of {{currency}} {{amount}} applied successfully"}');
|
|
35200
|
+
const libs_card_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"CARD_INFO":"Card Information","CARDHOLDER_NAME":"Cardholder Name","CARD_NUMBER":"Card Number","CARD_NUMBER_NOT_VALID":"Card number is not valid","CARD_NUMBER_IS_REQUIRED":"Card number is required","CARD_EXPIRY":"Expiry (MM/YY)","CARD_EXPIRY_NOT_VALID":"Expiry date is not valid","CARD_EXPIRY_IS_REQUIRED":"Expiry date is required","AMEX_CVV_IS_REQUIRED":"4-digit CVV is required","CVV_IS_REQUIRED":"3-digit CVV is required","CARD_NAME":"Name on card","CARD_NAME_PLACEHOLDER":"ex. Abdullah Adel","CARD_NAME_NOT_VALID":"Card name is not valid","CARD_NAME_IS_REQUIRED":"Cardholder Name is required","NAME_IS_REQUIRED":"Name is required","EMAIL_IS_REQUIRED":"Email is required","EMAIL_NOT_VALID":"Email is not valid","PHONE_IS_REQUIRED":"Phone is required","PHONE_NOT_VALID":"Phone is not valid","SAVED_CARDS_TITLE":"Saved cards","SAVE_CARD":"Save card for future use","ADD_NEW_CARD_BTN":"New card","CARD_ACTION_BTN":"Pay","OTP_ACTION_BTN":"Verify OTP","CARD_NUMBER_PLACEHOLDER":"1234 1234 1234 1234","MOBILE_CARD_NUMBER_PLACEHOLDER":"Card number","OTP_HINT":"Please enter the 4-digit code sent to your mobile","CVV_MODAL_HEADER":"CVV","CVV_MODAL_VISA_HEADER":"Have Mastercard / Visa card?","CVV_MODAL_VISA_BODY":"It\'s a 3-digit code on the back of your card.","CVV_MODAL_AMEX_HEADER":"Have American Express card?","CVV_MODAL_AMEX_BODY":"It\'s a 4-digit number on the front, just above your credit card number","ERR_MSG_EXCEEDED_TRIALS":"The payment session ends after 3 unsuccessful trials. You will be redirected to the website. You can start a new checkout session with Paymob","ERR_MSG_ALREADY_PROCESSED":"This payment was already processed with status pending","ERR_MSG_DECLINED":"Payment is declined","ERR_MSG_EXPIRED":"Looks like this payment was expired perhaps you should create a new one","ERR_MSG_SOMETHING_WENT_WRONG":"Something went wrong","FORCE_SAVE_CARD":"Card Details would be saved for future use","ERR_MSG_ALREADY_PAID":"This order has already been paid","ERR_OMAN_NET_INVALID":"Oman Net Card can’t be used for transaction. Please use another card type.","VIEW_SAVED_CARDS":"View Saved Cards","DISCOUNT_APPLIED":"Discount of <span>{{currency}}</span> {{amount}} applied successfully","DISCOUNT_EXCEEDS_ORDER":"Discount Amount is greater than Order Amount. Please Proceed without discount"}');
|
|
35141
35201
|
;// ../../localization/libs/kit-components/en.json
|
|
35142
|
-
const kit_components_en_namespaceObject = /*#__PURE__*/JSON.parse('{"PAYMENT_EXPIRED":"Link has expired","PAYMENT_EXPIRED_DESCRIPTION":"You can start a new Checkout session with Paymob.","PAYMENT_EXPIRED_DESCRIPTION_QUICK_LINK":"Please ask your merchant to share a new payment link","PAYMENT_EXCEEDED_DESCRIPTION":"The payment session ends after 3 unsuccessful trials. You can start a new checkout session with Paymob.","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES":"You can start a new checkout session with Paymob.","PAYMENT_EXCEEDED_DESCRIPTION_QUICK_LINK":"The Payment session ends after 3 unsuccessful trials. Please ask your merchant to share a new payment link","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES_QUICK_LINK":"Please ask your merchant to share a new payment link","PAYMENT_DECLINED":"Payment declined","PAYMENT_SUCCESSFUL":"Payment Successful","PAYMENT_PENDING":"Payment pending","PAYMENT_PENDING_DESCRIPTION":"Your payment is being processed.","PAYMENT_INVALID":"Something went wrong!","PAYMENT_INVALID_DESCRIPTION":"Unable to process the payment due to an unexpected error.","TRY_AGAIN":"Try again","CANCEL_BTN":"Cancel","REDIRECT_BTN":"Return to the Website","TOTAL_AMOUNT":"Total Amount","ORDER_AMOUNT":"Order Amount","LOADING_SECONDS_LEFT":"seconds left","LOADING_AUTHORIZATION_REQUIRED":"Authorization required","LOADING_REDIRECTED_TO":"To proceed, please authorize this transaction using your","LOADING_REDIRECTED_TO_INFO":"mobile App. Please proceed with payment confirmation within the given time.","PLANS_RADIO_TITLE":"Plan","PLANS_RADIO_EMPTY":"No plans","OFFERS_RADIO_TITLE":"Select offer","OTP_RESEND_QUESTION":"Didn’t receive code?","OTP_RESEND":"Resend code in ","OTP_RESEND_BUTTON":"Re-send OTP","OTP_RESEND_SUCCESS":"OTP has been sent successfully","OTP_LOADING_MESSAGE":"Awaiting Transaction Response. Please don’t close or refresh the browser.","SAVED_CARDS_TITLE":"Saved cards","ADD_NEW_CARD_BTN":"New card","CVV_INPUT_LABEL":"Enter CVV","AMEX_CVV_INPUT_LABEL":"Enter 4-digit CVV","SAVED_CARD_IDENTIFIER":"Card Ending with","SAVED_CARDS_ACTION_BTN":"Pay","
|
|
35202
|
+
const kit_components_en_namespaceObject = /*#__PURE__*/JSON.parse('{"PAYMENT_EXPIRED":"Link has expired","PAYMENT_EXPIRED_DESCRIPTION":"You can start a new Checkout session with Paymob.","PAYMENT_EXPIRED_DESCRIPTION_QUICK_LINK":"Please ask your merchant to share a new payment link","PAYMENT_EXCEEDED_DESCRIPTION":"The payment session ends after 3 unsuccessful trials. You can start a new checkout session with Paymob.","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES":"You can start a new checkout session with Paymob.","PAYMENT_EXCEEDED_DESCRIPTION_QUICK_LINK":"The Payment session ends after 3 unsuccessful trials. Please ask your merchant to share a new payment link","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES_QUICK_LINK":"Please ask your merchant to share a new payment link","PAYMENT_DECLINED":"Payment declined","PAYMENT_SUCCESSFUL":"Payment Successful","PAYMENT_PENDING":"Payment pending","PAYMENT_PENDING_DESCRIPTION":"Your payment is being processed.","PAYMENT_INVALID":"Something went wrong!","PAYMENT_INVALID_DESCRIPTION":"Unable to process the payment due to an unexpected error.","TRY_AGAIN":"Try again","CANCEL_BTN":"Cancel","REDIRECT_BTN":"Return to the Website","TOTAL_AMOUNT":"Total Amount","ORDER_AMOUNT":"Order Amount","LOADING_SECONDS_LEFT":"seconds left","LOADING_AUTHORIZATION_REQUIRED":"Authorization required","LOADING_REDIRECTED_TO":"To proceed, please authorize this transaction using your","LOADING_REDIRECTED_TO_INFO":"mobile App. Please proceed with payment confirmation within the given time.","PLANS_RADIO_TITLE":"Plan","PLANS_RADIO_EMPTY":"No plans","OFFERS_RADIO_TITLE":"Select offer","OTP_RESEND_QUESTION":"Didn’t receive code?","OTP_RESEND":"Resend code in ","OTP_RESEND_BUTTON":"Re-send OTP","OTP_RESEND_SUCCESS":"OTP has been sent successfully","OTP_LOADING_MESSAGE":"Awaiting Transaction Response. Please don’t close or refresh the browser.","SAVED_CARDS_TITLE":"Saved cards","ADD_NEW_CARD_BTN":"New card","CVV_INPUT_LABEL":"Enter CVV","AMEX_CVV_INPUT_LABEL":"Enter 4-digit CVV","SAVED_CARD_IDENTIFIER":"Card Ending with","SAVED_CARDS_ACTION_BTN":"Pay","NOW":"now","FULL_NAME":"Full name","CONTACT_INFO":"Contact information","SWITCH_PAYMENT_METHOD":"Switch payment method","BACK":"Back","DISCOUNT":"Discount of {{currency}} {{discount}} Applied","SECURE_CHECKOUT":"Checkout","SECURE_PAYMENT":"Secure payment","SAVED_CARD_INVALID":"Card Number is not valid, please add a new card","SAVED_CARD_EXPIRED":"Expired","SAVED_CARD_DELETE_BTN":"Yes, Delete it","SAVED_CARD_DELETE_CANCEL_BTN":"No. go back","SAVED_CARD_DELETE_TITLE":"Are you sure you want to delete the {{card}} ending in #** {{digits}}?","REDIRECTION_TO_MERCHANT":"Re-directing you to Merchant\'s Website in {{time}} seconds","REDIRECTION_TO_MERCHANT_LOADING":"We are redirecting you to the merchant website","CONFIRMING_TERMS":"By confirming your payment, you agree to","TERMS":"Terms and Conditions.","PAYMENT_THANKS":"Thanks for your payment","PAYMENT_COMPLETED":"Payment done","FAST_CHECKOUT_CREATED":"click account created","FAST_CHECKOUT_VERIFIED_TITLE":"You’re all set for Click checkout","FAST_CHECKOUT_VERIFIED_DESC":"Now you will enjoy the fastest checkout experience with Paymob","SKIP_TO_MERCHANT_BTN":"Skip to merchant website","COUNTRY_IS_REQUIRED":"Country is required","ADDRESS_IS_REQUIRED":"Address is required","CITY_IS_REQUIRED":"City is required","PROVINCE_IS_REQUIRED":"Province is required","STATE_IS_REQUIRED":"State is required","EMIRATE_IS_REQUIRED":"Emirate is required","POSTAL_CODE_IS_REQUIRED":"PIN Code is required","COUNTRIES":"Countries","NAME_IS_REQUIRED":"Name is required","EMAIL_IS_REQUIRED":"Email is required","EMAIL_NOT_VALID":"Email is not valid","PHONE_IS_REQUIRED":"Phone is required","PHONE_NOT_VALID":"Phone is not valid","SAME_AS_BILLING_CHECKBOX":"Use the same as billing address","SHIPPING":"Shipping","BILLING":"Billing","ADDRESS":"Address","CANCEL_PAYMENT":"Cancel payment","CONTINUE_PAYMENT":"Continue payment","RETRY_PAYMENT":"Retry payment","CANCEL_PAYMENT_DESC":"Are you sure you want to cancel payment and return to the merchant website?","POWERED_BY":"Powered by","NAME_PLACEHOLDER":"ex. Abdullah Adel","PHONE_PLACEHOLDER":"Enter Phone Number","OTP_MODAL_HEADER":"6-digit code","OTP_HINT":"Please enter the code we’ve sent to","OTP_SUMBIT_BUTTON":"Submit","OTP_CANCEL_BUTTON":"Cancel","AFTER_PAYMENT_SUCCESS":"Thanks for your payment","ALREADY_PAID":"This link has already been paid","PAYMENT_FAILURE":"This payment was already processed with status pending","OTP_PLACEHOLDER":"Enter the OTP","MOBILE_NUMBER":"mobile number","SYMPL_ZERO_INTEREST":"0% interest on any card","OFFERS":"Offers","OFFER":"Offer","ADD_SAVED_CARDS":"Enter new card details","SUBMIT_BTN":"Submit","LOADING":"Loading","PAYMENT_CANCELED":"Link has been cancelled"}');
|
|
35143
35203
|
;// ../../localization/libs/kit-components/ar.json
|
|
35144
|
-
const kit_components_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"PAYMENT_EXPIRED":"انتهت صلاحية الرابط","PAYMENT_EXPIRED_DESCRIPTION":".يمكنك بدء جلسة دفع جديدة مع باي موب","PAYMENT_EXPIRED_DESCRIPTION_QUICK_LINK":"رابط الدفع الذي استخدمته لم يعد صالحًا. يُرجى طلب رابط جديد من التاجر أو إعادة المحاولة لاحقًا لإتمام العملية.","PAYMENT_EXCEEDED_DESCRIPTION":".تنتهي جلسة الدفع بعد 3 محاولات غير ناجحة. يمكنك بدء جلسة دفع جديدة مع باي موب","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES":".يمكنك بدء جلسة دفع جديدة مع باي موب","PAYMENT_EXCEEDED_DESCRIPTION_QUICK_LINK":".تنتهي جلسة الدفع بعد 3 محاولات غير ناجحة، يرجى الطلب من التاجر مشاركة رابط دفع جديد","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES_QUICK_LINK":".من فضلك اطلب من التاجر مشاركة رابط دفع جديد","PAYMENT_DECLINED":"!لم يتم الدفع بنجاح","PAYMENT_SUCCESSFUL":"الدفع بنجاح","PAYMENT_PENDING":"الدفع قيد الانتظار","PAYMENT_PENDING_DESCRIPTION":".جاري إتمام عملية الدفع","PAYMENT_INVALID":"!حدث خطأ ما","PAYMENT_INVALID_DESCRIPTION":".تعذر إتمام الدفع بسبب خطأ غير متوقع","TRY_AGAIN":"حاول مرة أخرى","CANCEL_BTN":"إلغاء","REDIRECT_BTN":"العودة إلى الموقع الإلكتروني","TOTAL_AMOUNT":"الإجمالي","ORDER_AMOUNT":"
|
|
35204
|
+
const kit_components_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"PAYMENT_EXPIRED":"انتهت صلاحية الرابط","PAYMENT_EXPIRED_DESCRIPTION":".يمكنك بدء جلسة دفع جديدة مع باي موب","PAYMENT_EXPIRED_DESCRIPTION_QUICK_LINK":"رابط الدفع الذي استخدمته لم يعد صالحًا. يُرجى طلب رابط جديد من التاجر أو إعادة المحاولة لاحقًا لإتمام العملية.","PAYMENT_EXCEEDED_DESCRIPTION":".تنتهي جلسة الدفع بعد 3 محاولات غير ناجحة. يمكنك بدء جلسة دفع جديدة مع باي موب","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES":".يمكنك بدء جلسة دفع جديدة مع باي موب","PAYMENT_EXCEEDED_DESCRIPTION_QUICK_LINK":".تنتهي جلسة الدفع بعد 3 محاولات غير ناجحة، يرجى الطلب من التاجر مشاركة رابط دفع جديد","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES_QUICK_LINK":".من فضلك اطلب من التاجر مشاركة رابط دفع جديد","PAYMENT_DECLINED":"!لم يتم الدفع بنجاح","PAYMENT_SUCCESSFUL":"الدفع بنجاح","PAYMENT_PENDING":"الدفع قيد الانتظار","PAYMENT_PENDING_DESCRIPTION":".جاري إتمام عملية الدفع","PAYMENT_INVALID":"!حدث خطأ ما","PAYMENT_INVALID_DESCRIPTION":".تعذر إتمام الدفع بسبب خطأ غير متوقع","TRY_AGAIN":"حاول مرة أخرى","CANCEL_BTN":"إلغاء","REDIRECT_BTN":"العودة إلى الموقع الإلكتروني","TOTAL_AMOUNT":"الإجمالي","ORDER_AMOUNT":"مبلغ الطلب","LOADING_SECONDS_LEFT":"انتظر لثواني","LOADING_AUTHORIZATION_REQUIRED":"مطلوب التأكيد","LOADING_REDIRECTED_TO":".للمتابعة يرجي تأكيد المعاملة من الموبايل","LOADING_REDIRECTED_TO_INFO":".من فضلك تابع تأكيد المعاملة في الوقت المطلوب","PLANS_RADIO_TITLE":"خطط التقسيط","PLANS_RADIO_EMPTY":"لا توجد خطط","OFFERS_RADIO_TITLE":"Select offer","OTP_RESEND_QUESTION":"لم يصلك الكود؟","OTP_RESEND":"إعادة إرسال الكود في خلال","OTP_RESEND_BUTTON":"OTP إعادة إرسال كود الـ","OTP_RESEND_SUCCESS":"تم إرسال كود الـ OTP بنجاح","OTP_LOADING_MESSAGE":".بانتظار استجابة المعاملة. برجاء عدم الإغلاق أو التحديث","SAVED_CARDS_TITLE":"البطاقات المحفوظة","ADD_NEW_CARD_BTN":"بطاقة جديدة","CVV_INPUT_LABEL":"أدخل CVV","AMEX_CVV_INPUT_LABEL":"Enter 4-digit CVV","SAVED_CARD_IDENTIFIER":"بطاقة تنتهي بـ","SAVED_CARDS_ACTION_BTN":"ادفع","NOW":"الآن","FULL_NAME":"الاسم بالكامل","CONTACT_INFO":"معلومات الاتصال","SWITCH_PAYMENT_METHOD":"تغيير وسيلة الدفع","BACK":"العودة","DISCOUNT":"تم تطبيق خصم {{currency}} {{discount}}","SECURE_CHECKOUT":"بوابة الدفع","SECURE_PAYMENT":"دفع آمن","SAVED_CARD_INVALID":"Card Number is not valid, please add a new card","SAVED_CARD_EXPIRED":"منتهية الصلاحية","SAVED_CARD_DELETE_BTN":"نعم، احذفها","SAVED_CARD_DELETE_CANCEL_BTN":"لا. العودة","SAVED_CARD_DELETE_TITLE":"هل أنت متأكد أنك تريد حذف {{card}} التي تنتهي بـ #** {{digits}}?","REDIRECTION_TO_MERCHANT":"سيتم تحويلك إلى موقع التاجر خلال {{time}} ثانية.","REDIRECTION_TO_MERCHANT_LOADING":"جاري تحويلك إلى موقع التاجر","PAYMENT_THANKS":"Thanks for your payment","PAYMENT_COMPLETED":"Payment done","FAST_CHECKOUT_CREATED":"click account created","FAST_CHECKOUT_VERIFIED_TITLE":"You’re all set for Click checkout","FAST_CHECKOUT_VERIFIED_DESC":"Now you will enjoy the fastest checkout experience with Paymob","SKIP_TO_MERCHANT_BTN":"Skip to merchant website","COUNTRY_IS_REQUIRED":"Country is required","ADDRESS_IS_REQUIRED":"Address is required","CITY_IS_REQUIRED":"City is required","PROVINCE_IS_REQUIRED":"Province is required","STATE_IS_REQUIRED":"State is required","EMIRATE_IS_REQUIRED":"Emirate is required","POSTAL_CODE_IS_REQUIRED":"PIN Code is required","COUNTRIES":"Countries","SAME_AS_BILLING_CHECKBOX":"Use the same as billing address","SHIPPING":"Shipping","BILLING":"Billing","ADDRESS":"Address","CANCEL_PAYMENT":"Cancel payment","CONTINUE_PAYMENT":"Continue payment","RETRY_PAYMENT":"Retry payment","CANCEL_PAYMENT_DESC":"Are you sure you want to cancel payment and return to the merchant website?","CONFIRMING_TERMS":"بتأكيد الدفع، فأنت توافق على","TERMS":"الشروط والأحكام","NAME_IS_REQUIRED":"الاسم مطلوب","EMAIL_IS_REQUIRED":"البريد الإلكتروني مطلوب","EMAIL_NOT_VALID":"البريد الإلكتروني غير صحيح","PHONE_IS_REQUIRED":"رقم الهاتف مطلوب","PHONE_NOT_VALID":"رقم الهاتف غير صحيح","POWERED_BY":"مدعوم بواسطة","NAME_PLACEHOLDER":"مثال: عبدالله عادل","PHONE_PLACEHOLDER":"أدخل رقم الهاتف","OTP_MODAL_HEADER":"رمز مكون من 6 أرقام","OTP_HINT":"يرجى إدخال الرمز الذي أرسلناه إلى","OTP_SUMBIT_BUTTON":"إرسال","OTP_CANCEL_BUTTON":"إلغاء","AFTER_PAYMENT_SUCCESS":"شكرًا لإتمام الدفع","ALREADY_PAID":"تم سداد هذا الرابط بالفعل","PAYMENT_FAILURE":"تمت معالجة هذه الدفعة بالفعل وحالتها تحت المارجعة","OTP_PLACEHOLDER":"أدخل كود ال OTP","MOBILE_NUMBER":"رقم الموبايل","SYMPL_ZERO_INTEREST":"0٪ فائدة على أي بطاقة","OFFERS":"عروض","OFFER":"عرض","ADD_SAVED_CARDS":"دخل تفاصيل البطاقة الجديدة","SUBMIT_BTN":"إرسال","LOADING":"جاري التحميل","PAYMENT_CANCELED":"تم إلغاء الرابط"}');
|
|
35145
35205
|
;// ../../localization/libs/kit-components/ur.json
|
|
35146
|
-
const kit_components_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"PAYMENT_EXPIRED":"Link has expired","PAYMENT_EXPIRED_DESCRIPTION":"You can start a new Checkout session with Paymob.","PAYMENT_EXPIRED_DESCRIPTION_QUICK_LINK":"Please ask your merchant to share a new payment link","PAYMENT_EXCEEDED_DESCRIPTION":"The payment session ends after 3 unsuccessful trials. You can start a new checkout session with Paymob.","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES":"You can start a new checkout session with Paymob.","PAYMENT_EXCEEDED_DESCRIPTION_QUICK_LINK":"The Payment session ends after 3 unsuccessful trials. Please ask your merchant to share a new payment link","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES_QUICK_LINK":"Please ask your merchant to share a new payment link","PAYMENT_DECLINED":"Payment declined","PAYMENT_SUCCESSFUL":"Payment Successful","PAYMENT_PENDING":"Payment pending","PAYMENT_PENDING_DESCRIPTION":"Your payment is being processed.","PAYMENT_INVALID":"Something went wrong!","PAYMENT_INVALID_DESCRIPTION":"Unable to process the payment due to an unexpected error.","TRY_AGAIN":"Try again","CANCEL_BTN":"Cancel","REDIRECT_BTN":"Return to the Website","TOTAL_AMOUNT":"Total Amount","ORDER_AMOUNT":"Order Amount","LOADING_SECONDS_LEFT":"seconds left","LOADING_AUTHORIZATION_REQUIRED":"Authorization required","LOADING_REDIRECTED_TO":"To proceed, please authorize this transaction using your","LOADING_REDIRECTED_TO_INFO":"mobile App. Please proceed with payment confirmation within the given time.","PLANS_RADIO_TITLE":"Plan","PLANS_RADIO_EMPTY":"No plans","OFFERS_RADIO_TITLE":"Select offer","OTP_RESEND_QUESTION":"Didn’t receive code?","OTP_RESEND":"Resend code in ","OTP_RESEND_BUTTON":"Re-send OTP","OTP_RESEND_SUCCESS":"OTP has been sent successfully","OTP_LOADING_MESSAGE":"Awaiting Transaction Response. Please don’t close or refresh the browser.","SAVED_CARDS_TITLE":"Saved cards","ADD_NEW_CARD_BTN":"New card","CVV_INPUT_LABEL":"Enter CVV","AMEX_CVV_INPUT_LABEL":"Enter 4-digit CVV","SAVED_CARD_IDENTIFIER":"Card Ending with","SAVED_CARDS_ACTION_BTN":"Pay","
|
|
35206
|
+
const kit_components_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"PAYMENT_EXPIRED":"Link has expired","PAYMENT_EXPIRED_DESCRIPTION":"You can start a new Checkout session with Paymob.","PAYMENT_EXPIRED_DESCRIPTION_QUICK_LINK":"Please ask your merchant to share a new payment link","PAYMENT_EXCEEDED_DESCRIPTION":"The payment session ends after 3 unsuccessful trials. You can start a new checkout session with Paymob.","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES":"You can start a new checkout session with Paymob.","PAYMENT_EXCEEDED_DESCRIPTION_QUICK_LINK":"The Payment session ends after 3 unsuccessful trials. Please ask your merchant to share a new payment link","PAYMENT_EXCEEDED_DESCRIPTION_NO_RETRIES_QUICK_LINK":"Please ask your merchant to share a new payment link","PAYMENT_DECLINED":"Payment declined","PAYMENT_SUCCESSFUL":"Payment Successful","PAYMENT_PENDING":"Payment pending","PAYMENT_PENDING_DESCRIPTION":"Your payment is being processed.","PAYMENT_INVALID":"Something went wrong!","PAYMENT_INVALID_DESCRIPTION":"Unable to process the payment due to an unexpected error.","TRY_AGAIN":"Try again","CANCEL_BTN":"Cancel","REDIRECT_BTN":"Return to the Website","TOTAL_AMOUNT":"Total Amount","ORDER_AMOUNT":"Order Amount","LOADING_SECONDS_LEFT":"seconds left","LOADING_AUTHORIZATION_REQUIRED":"Authorization required","LOADING_REDIRECTED_TO":"To proceed, please authorize this transaction using your","LOADING_REDIRECTED_TO_INFO":"mobile App. Please proceed with payment confirmation within the given time.","PLANS_RADIO_TITLE":"Plan","PLANS_RADIO_EMPTY":"No plans","OFFERS_RADIO_TITLE":"Select offer","OTP_RESEND_QUESTION":"Didn’t receive code?","OTP_RESEND":"Resend code in ","OTP_RESEND_BUTTON":"Re-send OTP","OTP_RESEND_SUCCESS":"OTP has been sent successfully","OTP_LOADING_MESSAGE":"Awaiting Transaction Response. Please don’t close or refresh the browser.","SAVED_CARDS_TITLE":"Saved cards","ADD_NEW_CARD_BTN":"New card","CVV_INPUT_LABEL":"Enter CVV","AMEX_CVV_INPUT_LABEL":"Enter 4-digit CVV","SAVED_CARD_IDENTIFIER":"Card Ending with","SAVED_CARDS_ACTION_BTN":"Pay","NOW":"now","FULL_NAME":"Full name","CONTACT_INFO":"Contact information","SWITCH_PAYMENT_METHOD":"Switch payment method","BACK":"Back","DISCOUNT":"Discount of {{currency}} {{discount}} Applied","SECURE_CHECKOUT":"Checkout","SECURE_PAYMENT":"Secure payment","SAVED_CARD_INVALID":"Card Number is not valid, please add a new card","SAVED_CARD_EXPIRED":"Expired","SAVED_CARD_DELETE_BTN":"Yes, Delete it","SAVED_CARD_DELETE_CANCEL_BTN":"No. go back","SAVED_CARD_DELETE_TITLE":"Are you sure you want to delete the {{card}} ending in #** {{digits}}?","REDIRECTION_TO_MERCHANT":"Re-directing you to Merchant\'s Website in {{time}} seconds","REDIRECTION_TO_MERCHANT_LOADING":"We are redirecting you to the merchant website","CONFIRMING_TERMS":"By confirming your payment, you agree to","TERMS":"Terms and Conditions.","PAYMENT_THANKS":"Thanks for your payment","PAYMENT_COMPLETED":"Payment done","FAST_CHECKOUT_CREATED":"click account created","FAST_CHECKOUT_VERIFIED_TITLE":"You’re all set for Click checkout","FAST_CHECKOUT_VERIFIED_DESC":"Now you will enjoy the fastest checkout experience with Paymob","SKIP_TO_MERCHANT_BTN":"Skip to merchant website","COUNTRY_IS_REQUIRED":"Country is required","ADDRESS_IS_REQUIRED":"Address is required","CITY_IS_REQUIRED":"City is required","PROVINCE_IS_REQUIRED":"Province is required","STATE_IS_REQUIRED":"State is required","EMIRATE_IS_REQUIRED":"Emirate is required","POSTAL_CODE_IS_REQUIRED":"PIN Code is required","COUNTRIES":"Countries","NAME_IS_REQUIRED":"Name is required","EMAIL_IS_REQUIRED":"Email is required","EMAIL_NOT_VALID":"Email is not valid","PHONE_IS_REQUIRED":"Phone is required","PHONE_NOT_VALID":"Phone is not valid","SAME_AS_BILLING_CHECKBOX":"Use the same as billing address","SHIPPING":"Shipping","BILLING":"Billing","ADDRESS":"Address","CANCEL_PAYMENT":"Cancel payment","CONTINUE_PAYMENT":"Continue payment","RETRY_PAYMENT":"Retry payment","CANCEL_PAYMENT_DESC":"Are you sure you want to cancel payment and return to the merchant website?","POWERED_BY":"Powered by","NAME_PLACEHOLDER":"ex. Abdullah Adel","PHONE_PLACEHOLDER":"Enter Phone Number","OTP_MODAL_HEADER":"6-digit code","OTP_HINT":"Please enter the code we’ve sent to","OTP_SUMBIT_BUTTON":"Submit","OTP_CANCEL_BUTTON":"Cancel","AFTER_PAYMENT_SUCCESS":"Thanks for your payment","ALREADY_PAID":"This link has already been paid","PAYMENT_FAILURE":"This payment was already processed with status pending","OTP_PLACEHOLDER":"Enter the OTP","MOBILE_NUMBER":"mobile number","SYMPL_ZERO_INTEREST":"0% interest on any card","OFFERS":"Offers","OFFER":"Offer","ADD_SAVED_CARDS":"Enter new card details","SUBMIT_BTN":"Submit","LOADING":"Loading","PAYMENT_CANCELED":"Link has been cancelled"}');
|
|
35147
35207
|
;// ../../localization/libs/nift/ar.json
|
|
35148
35208
|
const libs_nift_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"SELECT_BANK_DROPDOWN":"Select your bank","SELECT_BANK_BTN":"Continue","INFO_BANK_ACCOUNT_NO":"Bank account no.","INFO_BANK_ACCOUNT_NO_VALIDATION_MSG":"Please enter a valid account number!","INFO_CNIC":"CNIC","INFO_CNIC_VALIDATION_MSG":"Please enter a valid CNIC number!","INFO_BTN":"Continue","OTP_HINT":"Please enter the 6-digit code sent to your mobile number","OTP_BTN":"Verify OTP"}');
|
|
35149
35209
|
;// ../../localization/libs/nift/en.json
|
|
@@ -35175,13 +35235,13 @@ const libs_postpay_en_namespaceObject = /*#__PURE__*/JSON.parse('{"EMAIL_LABEL":
|
|
|
35175
35235
|
;// ../../localization/libs/postpay/ur.json
|
|
35176
35236
|
const libs_postpay_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"EMAIL_LABEL":"Email address","ACTION_BTN":"Continue"}');
|
|
35177
35237
|
;// ../../localization/libs/tabby/ar.json
|
|
35178
|
-
const tabby_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"EMAIL_LABEL":"Email address","ACTION_BTN":"
|
|
35238
|
+
const tabby_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"EMAIL_LABEL":"Email address","ACTION_BTN":"المتابعة","MOBILE_NUMBER":"رقم الموبايل","EMAIL_ADDRESS":"البريد الإلكتروني","REDIRECT_MSG":"سيتم تحويلك إلى موقع تابي لإتمام الدفع"}');
|
|
35179
35239
|
;// ../../localization/libs/tabby/en.json
|
|
35180
35240
|
const tabby_en_namespaceObject = /*#__PURE__*/JSON.parse('{"EMAIL_LABEL":"Email address","ACTION_BTN":"Continue","MOBILE_NUMBER":"Mobile Number","EMAIL_ADDRESS":"Email Address","REDIRECT_MSG":"You will be re-directed to Tabby\'s website to complete the payment"}');
|
|
35181
35241
|
;// ../../localization/libs/tabby/ur.json
|
|
35182
35242
|
const tabby_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"EMAIL_LABEL":"Email address","ACTION_BTN":"Continue","MOBILE_NUMBER":"Mobile Number","EMAIL_ADDRESS":"Email Address","REDIRECT_MSG":"You will be re-directed to Tabby\'s website to complete the payment"}');
|
|
35183
35243
|
;// ../../localization/libs/tamara/ar.json
|
|
35184
|
-
const libs_tamara_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"EMAIL_LABEL":"Email address","ACTION_BTN":"المتابعة","MOBILE_NUMBER":"رقم الموبايل","EMAIL_ADDRESS":"البريد الإلكتروني","REDIRECT_MSG":"سيتم تحويلك إلى موقع
|
|
35244
|
+
const libs_tamara_ar_namespaceObject = /*#__PURE__*/JSON.parse('{"EMAIL_LABEL":"Email address","ACTION_BTN":"المتابعة","MOBILE_NUMBER":"رقم الموبايل","EMAIL_ADDRESS":"البريد الإلكتروني","REDIRECT_MSG":"سيتم تحويلك إلى موقع تمارا لإتمام الدفع"}');
|
|
35185
35245
|
;// ../../localization/libs/tamara/en.json
|
|
35186
35246
|
const libs_tamara_en_namespaceObject = /*#__PURE__*/JSON.parse('{"EMAIL_LABEL":"Email address","ACTION_BTN":"Continue","MOBILE_NUMBER":"Mobile Number","EMAIL_ADDRESS":"Email Address","REDIRECT_MSG":"You will be re-directed to Tamara\'s website to complete the payment"}');
|
|
35187
35247
|
;// ../../localization/libs/tamara/ur.json
|
|
@@ -35457,7 +35517,7 @@ const digital_wallet_ur_namespaceObject = /*#__PURE__*/JSON.parse('{"REDIRECT_ME
|
|
|
35457
35517
|
|
|
35458
35518
|
|
|
35459
35519
|
i18next.use(initReactI18next).init({
|
|
35460
|
-
lng:
|
|
35520
|
+
lng: 'en',
|
|
35461
35521
|
debug: true,
|
|
35462
35522
|
fallbackLng: 'en',
|
|
35463
35523
|
resources: {
|
|
@@ -35708,6 +35768,7 @@ var _Pixel;
|
|
|
35708
35768
|
|
|
35709
35769
|
|
|
35710
35770
|
|
|
35771
|
+
|
|
35711
35772
|
class Pixel {
|
|
35712
35773
|
constructor(options) {
|
|
35713
35774
|
var _options$showPaymobLo;
|
|
@@ -35725,15 +35786,17 @@ class Pixel {
|
|
|
35725
35786
|
this._options = Object.assign({}, options, {
|
|
35726
35787
|
showPaymobLogo: (_options$showPaymobLo = options.showPaymobLogo) != null ? _options$showPaymobLo : true
|
|
35727
35788
|
});
|
|
35728
|
-
|
|
35789
|
+
const baseURL = this.updateAPIBaseURL();
|
|
35790
|
+
const integrationType = this._options['clientSecret'] && this._options['paymentMethods'] ? 'directPayment' : 'tokenization';
|
|
35791
|
+
this._baseURL = baseURL;
|
|
35792
|
+
this._integrationType = integrationType;
|
|
35793
|
+
this.preloadIframe(baseURL, integrationType);
|
|
35729
35794
|
this._paymentsRef = /*#__PURE__*/react.createRef();
|
|
35730
35795
|
Pixel._instances[options.elementId] = this;
|
|
35731
35796
|
Pixel._lastInstanceId = options.elementId;
|
|
35732
|
-
if (
|
|
35733
|
-
this._integrationType = 'directPayment';
|
|
35797
|
+
if (integrationType === 'directPayment') {
|
|
35734
35798
|
this.getData();
|
|
35735
35799
|
} else {
|
|
35736
|
-
this._integrationType = 'tokenization';
|
|
35737
35800
|
this.renderCard();
|
|
35738
35801
|
}
|
|
35739
35802
|
}
|
|
@@ -35835,6 +35898,24 @@ class Pixel {
|
|
|
35835
35898
|
}
|
|
35836
35899
|
return await instance._paymentsRef.current.handleGenerateToken();
|
|
35837
35900
|
}
|
|
35901
|
+
preloadIframe(baseURL, integrationType) {
|
|
35902
|
+
const iframeUrl = `${baseURL}/${environment['IFRAME_PATH']}/?type=card&v=2&integration_type=${integrationType}`;
|
|
35903
|
+
const domain = new URL(baseURL).origin;
|
|
35904
|
+
const preconnect = document.createElement('link');
|
|
35905
|
+
preconnect.rel = 'preconnect';
|
|
35906
|
+
preconnect.href = domain;
|
|
35907
|
+
preconnect.crossOrigin = 'anonymous';
|
|
35908
|
+
document.head.appendChild(preconnect);
|
|
35909
|
+
const dnsPrefetch = document.createElement('link');
|
|
35910
|
+
dnsPrefetch.rel = 'dns-prefetch';
|
|
35911
|
+
dnsPrefetch.href = domain;
|
|
35912
|
+
document.head.appendChild(dnsPrefetch);
|
|
35913
|
+
const prefetch = document.createElement('link');
|
|
35914
|
+
prefetch.rel = 'prefetch';
|
|
35915
|
+
prefetch.href = iframeUrl;
|
|
35916
|
+
prefetch.as = 'document';
|
|
35917
|
+
document.head.appendChild(prefetch);
|
|
35918
|
+
}
|
|
35838
35919
|
render() {
|
|
35839
35920
|
const elementId = this._options['elementId'];
|
|
35840
35921
|
const container = document.getElementById(elementId);
|