tabexseriescomponents 0.0.324 → 0.0.325
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +223 -107
- package/dist/index.esm.js +223 -107
- package/dist/index.umd.js +224 -110
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -17,6 +17,7 @@ import { FaFacebookF } from '@react-icons/all-files/fa/FaFacebookF';
|
|
|
17
17
|
import { AiOutlineUser } from '@react-icons/all-files/ai/AiOutlineUser';
|
|
18
18
|
import { IoMdClose } from '@react-icons/all-files/io/IoMdClose';
|
|
19
19
|
import { Modal, Offcanvas } from 'react-bootstrap';
|
|
20
|
+
import { IKImage } from 'imagekitio-react';
|
|
20
21
|
import ImageGallery from 'react-image-gallery';
|
|
21
22
|
import { MdAddShoppingCart } from '@react-icons/all-files/md/MdAddShoppingCart';
|
|
22
23
|
import { IoBagHandleOutline } from '@react-icons/all-files/io5/IoBagHandleOutline';
|
|
@@ -29,7 +30,6 @@ import { FiShoppingCart } from '@react-icons/all-files/fi/FiShoppingCart';
|
|
|
29
30
|
import { AiFillStar as AiFillStar$1 } from '@react-icons/all-files/ai/AiFillStar';
|
|
30
31
|
import { AiOutlineStar } from '@react-icons/all-files/ai/AiOutlineStar';
|
|
31
32
|
import { FacebookShareButton, FacebookIcon, TwitterShareButton, TwitterIcon, WhatsappShareButton, WhatsappIcon } from 'react-share';
|
|
32
|
-
import { IKImage } from 'imagekitio-react';
|
|
33
33
|
import { FiMinus } from '@react-icons/all-files/fi/FiMinus';
|
|
34
34
|
import { FiPlus } from '@react-icons/all-files/fi/FiPlus';
|
|
35
35
|
import ReactStars from 'react-rating-stars-component';
|
|
@@ -61,6 +61,8 @@ import { GrMail } from '@react-icons/all-files/gr/GrMail';
|
|
|
61
61
|
import { FiCheckCircle } from '@react-icons/all-files/fi/FiCheckCircle';
|
|
62
62
|
import { BiPhone } from '@react-icons/all-files/bi/BiPhone';
|
|
63
63
|
import PhoneInput from 'react-phone-input-2';
|
|
64
|
+
import '@react-icons/all-files/ai/AiOutlineEye';
|
|
65
|
+
import '@react-icons/all-files/ai/AiOutlineEyeInvisible';
|
|
64
66
|
import { BsChevronLeft } from '@react-icons/all-files/bs/BsChevronLeft';
|
|
65
67
|
import { BsChevronRight } from '@react-icons/all-files/bs/BsChevronRight';
|
|
66
68
|
import '@react-icons/all-files/ri/RiArrowUpSLine';
|
|
@@ -559,6 +561,22 @@ var FacebookLoginButton = function FacebookLoginButton(props) {
|
|
|
559
561
|
}));
|
|
560
562
|
};
|
|
561
563
|
|
|
564
|
+
var Imagekitimagecomp = function Imagekitimagecomp(props) {
|
|
565
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, (props === null || props === void 0 ? void 0 : props.urlEndpoint) != undefined && (props === null || props === void 0 ? void 0 : props.urlEndpoint) != '' && /*#__PURE__*/React.createElement(IKImage, {
|
|
566
|
+
urlEndpoint: props === null || props === void 0 ? void 0 : props.urlEndpoint
|
|
567
|
+
// urlEndpoint={'https://ik.imagekit.io/ppcqtfrxp'}
|
|
568
|
+
,
|
|
569
|
+
publicKey: props === null || props === void 0 ? void 0 : props.publicKey
|
|
570
|
+
// publicKey={'public_h8U+4K+MFoeq+MKLf34NST4axAo='}
|
|
571
|
+
,
|
|
572
|
+
path: props.path,
|
|
573
|
+
style: props.style,
|
|
574
|
+
loading: props.loading,
|
|
575
|
+
onClick: props.onClick,
|
|
576
|
+
"class": props["class"]
|
|
577
|
+
}));
|
|
578
|
+
};
|
|
579
|
+
|
|
562
580
|
function ownKeys$2f(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
563
581
|
function _objectSpread$2f(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$2f(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$2f(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
564
582
|
var Login = function Login(props) {
|
|
@@ -575,6 +593,8 @@ var Login = function Login(props) {
|
|
|
575
593
|
var NotificationManager = props.actions.NotificationManager;
|
|
576
594
|
var instapikey = props.actions.instapikey;
|
|
577
595
|
var actions = props.actions;
|
|
596
|
+
props.actions.ikimagecredcontext;
|
|
597
|
+
props.actions.authdetailsContext;
|
|
578
598
|
var _useState = useState(''),
|
|
579
599
|
_useState2 = _slicedToArray(_useState, 2),
|
|
580
600
|
statusreason = _useState2[0];
|
|
@@ -617,6 +637,8 @@ var Login = function Login(props) {
|
|
|
617
637
|
_useState16 = _slicedToArray(_useState15, 2),
|
|
618
638
|
sectionproperties = _useState16[0],
|
|
619
639
|
setsectionproperties = _useState16[1];
|
|
640
|
+
// const templateproperties_context = props.actions.templateproperties_context;
|
|
641
|
+
|
|
620
642
|
useEffect(function () {
|
|
621
643
|
var cartindex = templatepropcontext.pagesnprop.findIndex(function (x) {
|
|
622
644
|
return x.staticpageid == '6218bccb77283';
|
|
@@ -655,6 +677,19 @@ var Login = function Login(props) {
|
|
|
655
677
|
}
|
|
656
678
|
}
|
|
657
679
|
}, [ForgetpasswordMutationContext.isSuccess]);
|
|
680
|
+
// const [imagesarray, setimagesarray] = useState([]);
|
|
681
|
+
|
|
682
|
+
// useEffect(() => {
|
|
683
|
+
// if (sectionproperties.length != 0) {
|
|
684
|
+
// if (sectionproperties.logoarrayofobjects != null) {
|
|
685
|
+
// var logoarrayofobjectsparsed = JSON.parse(sectionproperties.logoarrayofobjects);
|
|
686
|
+
// if (Array.isArray(logoarrayofobjectsparsed)) {
|
|
687
|
+
// setimagesarray([...logoarrayofobjectsparsed]);
|
|
688
|
+
// }
|
|
689
|
+
// }
|
|
690
|
+
// }
|
|
691
|
+
// }, [sectionproperties]);
|
|
692
|
+
|
|
658
693
|
var loginstyles2 = {
|
|
659
694
|
loginbtn: css({
|
|
660
695
|
background: sectionproperties.login_btn_backgroundtransparent == 'Transparent' ? 'transparent' : sectionproperties.login_btn_background,
|
|
@@ -792,7 +827,7 @@ var Login = function Login(props) {
|
|
|
792
827
|
setpayloadobj(_objectSpread$2f({}, temppayloadobj));
|
|
793
828
|
},
|
|
794
829
|
style: {
|
|
795
|
-
background:
|
|
830
|
+
background: sectionproperties.input_bgcolor
|
|
796
831
|
}
|
|
797
832
|
})), /*#__PURE__*/React.createElement("div", {
|
|
798
833
|
className: "col-lg-12 col-md-12 col-sm-12 p-sm-0"
|
|
@@ -816,9 +851,9 @@ var Login = function Login(props) {
|
|
|
816
851
|
setpayloadobj(_objectSpread$2f({}, temppayloadobj));
|
|
817
852
|
},
|
|
818
853
|
style: {
|
|
819
|
-
background:
|
|
854
|
+
background: sectionproperties.input_bgcolor
|
|
820
855
|
}
|
|
821
|
-
})), /*#__PURE__*/React.createElement("div", {
|
|
856
|
+
})), sectionproperties.showforgetpassword == 'Show' && /*#__PURE__*/React.createElement("div", {
|
|
822
857
|
className: "col-lg-12 col-md-12 col-sm-12 mb-3 d-flex justify-content-end mt-1 cursor-pointer text-light text-lighthover font-13 ",
|
|
823
858
|
onClick: function onClick() {
|
|
824
859
|
setforgetpasswordmodal(true);
|
|
@@ -901,7 +936,8 @@ var Login = function Login(props) {
|
|
|
901
936
|
className: "col-lg-12 d-flex align-items-center justify-content-center pt-md-3 pb-5",
|
|
902
937
|
style: {
|
|
903
938
|
background: sectionproperties.backgroundColor,
|
|
904
|
-
marginBottom: sectionproperties.marginBottom + 'px'
|
|
939
|
+
marginBottom: sectionproperties.marginBottom + 'px',
|
|
940
|
+
height: sectionproperties.height != null ? sectionproperties.height + 'vh' : 'auto'
|
|
905
941
|
}
|
|
906
942
|
}, /*#__PURE__*/React.createElement("div", {
|
|
907
943
|
"class": "row ml-0 mr-0 w-100 d-flex d-md-none",
|
|
@@ -969,7 +1005,7 @@ var Login = function Login(props) {
|
|
|
969
1005
|
},
|
|
970
1006
|
disabled: forgetpasswordstage == 'verify' ? true : false,
|
|
971
1007
|
style: {
|
|
972
|
-
background:
|
|
1008
|
+
background: sectionproperties.input_bgcolor
|
|
973
1009
|
}
|
|
974
1010
|
})), forgetpasswordstage == 'verify' && /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
|
975
1011
|
className: "col-lg-12 col-md-12 col-sm-12 mb-3 mt-3 p-sm-0"
|
|
@@ -985,7 +1021,7 @@ var Login = function Login(props) {
|
|
|
985
1021
|
setforgotpasswordpayload(_objectSpread$2f({}, temppayloadobj));
|
|
986
1022
|
},
|
|
987
1023
|
style: {
|
|
988
|
-
background:
|
|
1024
|
+
background: sectionproperties.input_bgcolor
|
|
989
1025
|
}
|
|
990
1026
|
})), /*#__PURE__*/React.createElement("div", {
|
|
991
1027
|
className: "col-lg-12 col-md-12 col-sm-12 mb-3 p-sm-0"
|
|
@@ -1001,7 +1037,7 @@ var Login = function Login(props) {
|
|
|
1001
1037
|
setforgotpasswordpayload(_objectSpread$2f({}, temppayloadobj));
|
|
1002
1038
|
},
|
|
1003
1039
|
style: {
|
|
1004
|
-
background:
|
|
1040
|
+
background: sectionproperties.input_bgcolor
|
|
1005
1041
|
}
|
|
1006
1042
|
})), /*#__PURE__*/React.createElement("div", {
|
|
1007
1043
|
className: "col-lg-12 col-md-12 col-sm-12 mb-2 p-sm-0"
|
|
@@ -1017,7 +1053,7 @@ var Login = function Login(props) {
|
|
|
1017
1053
|
setforgotpasswordpayload(_objectSpread$2f({}, temppayloadobj));
|
|
1018
1054
|
},
|
|
1019
1055
|
style: {
|
|
1020
|
-
background:
|
|
1056
|
+
background: sectionproperties.input_bgcolor
|
|
1021
1057
|
}
|
|
1022
1058
|
}))))), /*#__PURE__*/React.createElement(Modal.Footer, null, /*#__PURE__*/React.createElement("div", {
|
|
1023
1059
|
className: "col-lg-12 col-md-12 col-sm-12 d-flex align-items-center justify-content-center mb-3 "
|
|
@@ -1073,24 +1109,8 @@ styleInject(css_248z$L);
|
|
|
1073
1109
|
var css_248z$K = ".image-gallery_image-gallery-icon__WE2UX {\n\tcolor: #fff;\n\ttransition: all .3s ease-out;\n\tappearance: none;\n\tbackground-color: transparent;\n\tborder: 0;\n\tcursor: pointer;\n\toutline: none;\n\tposition: absolute;\n\tz-index: 4;\n display: none !important;\n\t/* filter: drop-shadow(0 2px 2px #1a1a1a); */\n}\n\n@media(hover: hover)and (pointer: fine) {\n\t.image-gallery_image-gallery-icon__WE2UX:hover {\n\t\tcolor: var(--secondary)\n\t}\n\n\t.image-gallery_image-gallery-icon__WE2UX:hover .image-gallery_image-gallery-svg__XloJd {\n\t\ttransform: scale(1.1)\n\t}\n}\n\n.image-gallery_image-gallery-icon__WE2UX:focus {\n\toutline: 2px solid #000\n}\n\n.image-gallery_image-gallery-using-mouse__lBKAU .image-gallery_image-gallery-icon__WE2UX:focus {\n\toutline: none\n}\n\n.image-gallery_image-gallery-fullscreen-button__xyF3z,\n.image-gallery_image-gallery-play-button__2AS3J {\n\tbottom: 0;\n\tpadding: 20px\n}\n\n.image-gallery_image-gallery-fullscreen-button__xyF3z .image-gallery_image-gallery-svg__XloJd,\n.image-gallery_image-gallery-play-button__2AS3J .image-gallery_image-gallery-svg__XloJd {\n\theight: 28px;\n\twidth: 28px\n}\n\n@media(max-width: 768px) {\n\n\t.image-gallery_image-gallery-fullscreen-button__xyF3z,\n\t.image-gallery_image-gallery-play-button__2AS3J {\n\t\tpadding: 15px\n\t}\n\n\t.image-gallery_image-gallery-fullscreen-button__xyF3z .image-gallery_image-gallery-svg__XloJd,\n\t.image-gallery_image-gallery-play-button__2AS3J .image-gallery_image-gallery-svg__XloJd {\n\t\theight: 24px;\n\t\twidth: 24px\n\t}\n}\n\n@media(max-width: 480px) {\n\n\t.image-gallery_image-gallery-fullscreen-button__xyF3z,\n\t.image-gallery_image-gallery-play-button__2AS3J {\n\t\tpadding: 10px\n\t}\n\n\t.image-gallery_image-gallery-fullscreen-button__xyF3z .image-gallery_image-gallery-svg__XloJd,\n\t.image-gallery_image-gallery-play-button__2AS3J .image-gallery_image-gallery-svg__XloJd {\n\t\theight: 16px;\n\t\twidth: 16px\n\t}\n}\n\n.image-gallery_image-gallery-fullscreen-button__xyF3z {\n\tright: 0\n}\n\n.image-gallery_image-gallery-play-button__2AS3J {\n\tleft: 0\n}\n\n.image-gallery_image-gallery-left-nav__BmHmk,\n.image-gallery_image-gallery-right-nav__53hut {\n\tpadding: 50px 10px;\n\ttop: 50%;\n\ttransform: translateY(-50%)\n}\n\n.image-gallery_image-gallery-left-nav__BmHmk .image-gallery_image-gallery-svg__XloJd,\n.image-gallery_image-gallery-right-nav__53hut .image-gallery_image-gallery-svg__XloJd {\n\theight: 120px;\n\twidth: 60px\n}\n\n@media(max-width: 768px) {\n\n\t.image-gallery_image-gallery-left-nav__BmHmk .image-gallery_image-gallery-svg__XloJd,\n\t.image-gallery_image-gallery-right-nav__53hut .image-gallery_image-gallery-svg__XloJd {\n\t\theight: 72px;\n\t\twidth: 36px\n\t}\n}\n\n@media(max-width: 480px) {\n\n\t.image-gallery_image-gallery-left-nav__BmHmk .image-gallery_image-gallery-svg__XloJd,\n\t.image-gallery_image-gallery-right-nav__53hut .image-gallery_image-gallery-svg__XloJd {\n\t\theight: 48px;\n\t\twidth: 24px\n\t}\n}\n\n.image-gallery_image-gallery-left-nav__BmHmk[disabled],\n.image-gallery_image-gallery-right-nav__53hut[disabled] {\n\tcursor: disabled;\n\topacity: .6;\n\tpointer-events: none\n}\n\n.image-gallery_image-gallery-left-nav__BmHmk {\n\tleft: 0\n}\n\n.image-gallery_image-gallery-right-nav__53hut {\n\tright: 0\n}\n\n.image-gallery_image-gallery__FfPQj {\n\t-webkit-user-select: none;\n\t-moz-user-select: none;\n\t-ms-user-select: none;\n\t-o-user-select: none;\n\tuser-select: none;\n\t-webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n\tposition: relative\n}\n\n.image-gallery_image-gallery__FfPQj.image-gallery_fullscreen-modal__KM6Xw {\n\tbackground: #000;\n\tbottom: 0;\n\theight: 100%;\n\tleft: 0;\n\tposition: fixed;\n\tright: 0;\n\ttop: 0;\n\twidth: 100%;\n\tz-index: 5\n}\n\n.image-gallery_image-gallery__FfPQj.image-gallery_fullscreen-modal__KM6Xw .image-gallery_image-gallery-content__kMTBU {\n\ttop: 50%;\n\ttransform: translateY(-50%)\n}\n\n.image-gallery_image-gallery-content__kMTBU {\n\tposition: relative;\n\tline-height: 0;\n\ttop: 0\n}\n\n.image-gallery_image-gallery-content__kMTBU.image-gallery_fullscreen__VMCyX {\n\tbackground: #000\n}\n\n.image-gallery_image-gallery-content__kMTBU .image-gallery_image-gallery-slide__2BfHc .image-gallery_image-gallery-image__pCNKh {\n\tmax-height: 50vh !important;\n}\n\n.image-gallery_image-gallery-content__kMTBU.image-gallery_left__K0NWU .image-gallery_image-gallery-slide__2BfHc .image-gallery_image-gallery-image__pCNKh,\n.image-gallery_image-gallery-content__kMTBU.image-gallery_right__PlchD .image-gallery_image-gallery-slide__2BfHc .image-gallery_image-gallery-image__pCNKh {\n\tmax-height: 100vh\n}\n\n.image-gallery_image-gallery-slide-wrapper__gdmSf {\n\tposition: relative\n}\n\n.image-gallery_image-gallery-slide-wrapper__gdmSf.image-gallery_left__K0NWU,\n.image-gallery_image-gallery-slide-wrapper__gdmSf.image-gallery_right__PlchD {\n\tdisplay: inline-block;\n\twidth: calc(100% - 110px)\n}\n\n@media(max-width: 768px) {\n\n\t.image-gallery_image-gallery-slide-wrapper__gdmSf.image-gallery_left__K0NWU,\n\t.image-gallery_image-gallery-slide-wrapper__gdmSf.image-gallery_right__PlchD {\n\t\twidth: calc(100% - 87px)\n\t}\n}\n\n.image-gallery_image-gallery-slide-wrapper__gdmSf.image-gallery_image-gallery-rtl__jhrNg {\n\tdirection: rtl\n}\n\n.image-gallery_image-gallery-slides__cWfmF {\n\tline-height: 0;\n\toverflow: hidden;\n\tposition: relative;\n\twhite-space: nowrap;\n\ttext-align: center\n}\n\n.image-gallery_image-gallery-slide__2BfHc {\n\tleft: 0;\n\tposition: absolute;\n\ttop: 0;\n\twidth: 100%\n}\n\n.image-gallery_image-gallery-slide__2BfHc.image-gallery_center__1gH-w {\n\tposition: relative\n}\n\n.image-gallery_image-gallery-slide__2BfHc .image-gallery_image-gallery-image__pCNKh {\n\twidth: 100%;\n\tobject-fit: contain\n}\n\n.image-gallery_image-gallery-slide__2BfHc .image-gallery_image-gallery-description__l1rZM {\n\tbackground: rgba(0, 0, 0, .4);\n\tbottom: 70px;\n\tcolor: #fff;\n\tleft: 0;\n\tline-height: 1;\n\tpadding: 10px 20px;\n\tposition: absolute;\n\twhite-space: normal\n}\n\n@media(max-width: 768px) {\n\t.image-gallery_image-gallery-slide__2BfHc .image-gallery_image-gallery-description__l1rZM {\n\t\tbottom: 45px;\n\t\tfont-size: .8em;\n\t\tpadding: 8px 15px\n\t}\n}\n\n.image-gallery_image-gallery-bullets__CEQBy {\n\tbottom: 20px;\n\tleft: 0;\n\tmargin: 0 auto;\n\tposition: absolute;\n\tright: 0;\n\twidth: 80%;\n\tz-index: 4\n}\n\n.image-gallery_image-gallery-bullets__CEQBy .image-gallery_image-gallery-bullets-container__BXDlg {\n\tmargin: 0;\n\tpadding: 0;\n\ttext-align: center\n}\n\n.image-gallery_image-gallery-bullets__CEQBy .image-gallery_image-gallery-bullet__Z7gGG {\n\tappearance: none;\n\tbackground-color: transparent;\n\tborder: 1px solid #fff;\n\tborder-radius: 50%;\n\tbox-shadow: 0 2px 2px #1a1a1a;\n\tcursor: pointer;\n\tdisplay: inline-block;\n\tmargin: 0 5px;\n\toutline: none;\n\tpadding: 5px;\n\ttransition: all .2s ease-out\n}\n\n@media(max-width: 768px) {\n\t.image-gallery_image-gallery-bullets__CEQBy .image-gallery_image-gallery-bullet__Z7gGG {\n\t\tmargin: 0 3px;\n\t\tpadding: 3px\n\t}\n}\n\n@media(max-width: 480px) {\n\t.image-gallery_image-gallery-bullets__CEQBy .image-gallery_image-gallery-bullet__Z7gGG {\n\t\tpadding: 2.7px\n\t}\n}\n\n.image-gallery_image-gallery-bullets__CEQBy .image-gallery_image-gallery-bullet__Z7gGG:focus {\n\ttransform: scale(1.2);\n\tbackground: #000;\n\tborder: 1px solid #000\n}\n\n.image-gallery_image-gallery-bullets__CEQBy .image-gallery_image-gallery-bullet__Z7gGG.image-gallery_active__B2qrR {\n\ttransform: scale(1.2);\n\tborder: 1px solid #fff;\n\tbackground: #fff\n}\n\n@media(hover: hover)and (pointer: fine) {\n\t.image-gallery_image-gallery-bullets__CEQBy .image-gallery_image-gallery-bullet__Z7gGG:hover {\n\t\tbackground: #000;\n\t\tborder: 1px solid #000\n\t}\n\n\t.image-gallery_image-gallery-bullets__CEQBy .image-gallery_image-gallery-bullet__Z7gGG.image-gallery_active__B2qrR:hover {\n\t\tbackground: #000\n\t}\n}\n\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv- {\n\tposition: relative\n}\n\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_thumbnails-swipe-horizontal__5-5qp {\n\ttouch-action: pan-y\n}\n\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_thumbnails-swipe-vertical__-NAhb {\n\ttouch-action: pan-x\n}\n\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_thumbnails-wrapper-rtl__Ya5gz {\n\tdirection: rtl\n}\n\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_left__K0NWU,\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_right__PlchD {\n\tdisplay: inline-block;\n\tvertical-align: top;\n\twidth: 100px;\n\theight: 100px !important;\n}\n\n@media(max-width: 768px) {\n\n\t.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_left__K0NWU,\n\t.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_right__PlchD {\n\t\twidth: 81px\n\t}\n}\n\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_left__K0NWU .image-gallery_image-gallery-thumbnails__1BFBn,\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_right__PlchD .image-gallery_image-gallery-thumbnails__1BFBn {\n\theight: 100%;\n\twidth: 100%;\n\tleft: 0;\n\tpadding: 0;\n\tposition: absolute;\n\ttop: 0\n}\n\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_left__K0NWU .image-gallery_image-gallery-thumbnails__1BFBn .image-gallery_image-gallery-thumbnail__EKbDF,\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_right__PlchD .image-gallery_image-gallery-thumbnails__1BFBn .image-gallery_image-gallery-thumbnail__EKbDF {\n\tdisplay: block;\n\tmargin-right: 0;\n\tpadding: 0\n}\n\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_left__K0NWU .image-gallery_image-gallery-thumbnails__1BFBn .image-gallery_image-gallery-thumbnail__EKbDF+.image-gallery_image-gallery-thumbnail__EKbDF,\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_right__PlchD .image-gallery_image-gallery-thumbnails__1BFBn .image-gallery_image-gallery-thumbnail__EKbDF+.image-gallery_image-gallery-thumbnail__EKbDF {\n\tmargin-left: 0;\n\tmargin-top: 2px\n}\n\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_left__K0NWU,\n.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_right__PlchD {\n\tmargin: 0 5px\n}\n\n@media(max-width: 768px) {\n\n\t.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_left__K0NWU,\n\t.image-gallery_image-gallery-thumbnails-wrapper__7vIv-.image-gallery_right__PlchD {\n\t\tmargin: 0 3px\n\t}\n}\n\n.image-gallery_image-gallery-thumbnails__1BFBn {\n\toverflow: hidden;\n\tpadding: 5px 0\n}\n\n@media(max-width: 768px) {\n\t.image-gallery_image-gallery-thumbnails__1BFBn {\n\t\tpadding: 3px 0\n\t}\n}\n\n.image-gallery_image-gallery-thumbnails__1BFBn .image-gallery_image-gallery-thumbnails-container__Z3mr8 {\n\tcursor: pointer;\n\ttext-align: center;\n\twhite-space: nowrap\n}\n\n.image-gallery_image-gallery-thumbnail__EKbDF {\n\tdisplay: inline-block;\n\tborder: 2px solid transparent;\n\ttransition: border .3s ease-out;\n\twidth: 10vh;\n\tbackground: transparent;\n\tpadding: 0\n}\n\n@media(max-width: 768px) {\n\t.image-gallery_image-gallery-thumbnail__EKbDF {\n\t\tborder: 3px solid transparent;\n\t\twidth: 81px\n\t}\n}\n\n.image-gallery_image-gallery-thumbnail__EKbDF+.image-gallery_image-gallery-thumbnail__EKbDF {\n\tmargin-left: 2px\n}\n\n.image-gallery_image-gallery-thumbnail__EKbDF .image-gallery_image-gallery-thumbnail-inner__4F4ry {\n\tdisplay: block;\n\tposition: relative\n}\n.image-gallery_image-gallery-thumbnail__EKbDF{\n\twidth: 10vh;\n\theight: 7vh;\n\toverflow: hidden;\n}\n.image-gallery_image-gallery-thumbnail__EKbDF .image-gallery_image-gallery-thumbnail-image__Oi9qX {\n\twidth: 100%;\n height:100%;\n\tline-height: 0;\n object-fit: contain;\n}\n\n.image-gallery_image-gallery-thumbnail__EKbDF.image-gallery_active__B2qrR,\n.image-gallery_image-gallery-thumbnail__EKbDF:focus {\n\toutline: none;\n\tborder: 2px solid var(--light);\n}\n@media(hover: hover)and (pointer: fine) {\n\t.image-gallery_image-gallery-thumbnail__EKbDF:hover {\n\t\toutline: none;\n\t\tborder: 2px solid var(--light)\n\t}\n}\n\n@media(hover: hover)and (pointer: fine)and (max-width: 768px) {\n\t.image-gallery_image-gallery-thumbnail__EKbDF:hover {\n\t\tborder: 2px solid var(--primary)\n\t}\n}\n\n.image-gallery_image-gallery-thumbnail-label__4Xph8 {\n\tbox-sizing: border-box;\n\tcolor: #fff;\n\tfont-size: 1em;\n\tleft: 0;\n\tline-height: 1em;\n\tpadding: 5%;\n\tposition: absolute;\n\ttop: 50%;\n\ttext-shadow: 0 2px 2px #1a1a1a;\n\ttransform: translateY(-50%);\n\twhite-space: normal;\n\twidth: 100%\n}\n\n@media(max-width: 768px) {\n\t.image-gallery_image-gallery-thumbnail-label__4Xph8 {\n\t\tfont-size: .8em;\n\t\tline-height: .8em\n\t}\n}\n\n.image-gallery_image-gallery-index__DbRoC {\n\tbackground: rgba(0, 0, 0, .4);\n\tcolor: #fff;\n\tline-height: 1;\n\tpadding: 10px 20px;\n\tposition: absolute;\n\tright: 0;\n\ttop: 0;\n\tz-index: 4\n}\n\n@media(max-width: 768px) {\n\t.image-gallery_image-gallery-index__DbRoC {\n\t\tfont-size: .8em;\n\t\tpadding: 5px 10px\n\t}\n}";
|
|
1074
1110
|
styleInject(css_248z$K);
|
|
1075
1111
|
|
|
1076
|
-
var
|
|
1077
|
-
|
|
1078
|
-
urlEndpoint: props === null || props === void 0 ? void 0 : props.urlEndpoint
|
|
1079
|
-
// urlEndpoint={'https://ik.imagekit.io/ppcqtfrxp'}
|
|
1080
|
-
,
|
|
1081
|
-
publicKey: props === null || props === void 0 ? void 0 : props.publicKey
|
|
1082
|
-
// publicKey={'public_h8U+4K+MFoeq+MKLf34NST4axAo='}
|
|
1083
|
-
,
|
|
1084
|
-
path: props.path,
|
|
1085
|
-
style: props.style,
|
|
1086
|
-
loading: props.loading,
|
|
1087
|
-
onClick: props.onClick,
|
|
1088
|
-
"class": props["class"]
|
|
1089
|
-
}));
|
|
1090
|
-
};
|
|
1091
|
-
|
|
1092
|
-
var css_248z$J = "@media screen and (max-width: 800px) {\n .signup-module_rightContainer__yEcoL,\n .signup-module_rightContainerTrans__fkdBH {\n border-top-right-radius: 0 !important;\n border-bottom-right-radius: 15px !important;\n border-bottom-left-radius: 15px !important;\n }\n .signup-module_rightContainerText__-pvN- {\n font-size: 23px !important;\n }\n}\n.signup-module_form_control__7s76W:focus {\n -webkit-animation: signup-module_anim-shadow__CsxhG 0.5s ease-in-out forwards;\n animation: signup-module_anim-shadow__CsxhG 0.5s ease-in-out forwards;\n}\n.signup-module_form_control__7s76W:focus + .signup-module_login_input_icon__RDTS0 {\n padding-left: 20px;\n}\n/* Forms */\n.signup-module_form_control__7s76W {\n display: block;\n width: 100%;\n /* height: 35px; */\n /* font-size: 1rem; */\n /* color: var(--cardtitle); */\n /* background: no-repeat center bottom, center calc(100% - 1px); */\n /* background-size: 0 100%, 100% 100%; */\n background-clip: padding-box;\n /* font-size: 14px; */\n /* transition: background 0s ease-out; */\n /* border: 0; */\n padding: 0 15px;\n font-weight: 500;\n display: flex;\n align-items: center;\n position: relative;\n}\n@media screen and (prefers-reduced-motion: reduce) {\n .signup-module_form_control__7s76W {\n transition: none;\n }\n}\n.signup-module_form_control__7s76W::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n.signup-module_form_control__7s76W:focus {\n outline: 0;\n}\n.signup-module_form_control__7s76W::placeholder {\n opacity: 1;\n}\n.signup-module_form_control__7s76W:disabled,\n.signup-module_form_control__7s76W[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n cursor: not-allowed;\n}\ntextarea.signup-module_form_control__7s76W {\n height: auto;\n}\n.signup-module_form_control__7s76W:focus {\n /* background-size: 100% 100%, 100% 100%; */\n transition-duration: 0.3s;\n box-shadow: none;\n}\n.signup-module_form_control__7s76W::-moz-placeholder {\n color: #aaaaaa;\n font-weight: 400;\n font-size: 14px;\n}\n.signup-module_form_control__7s76W:-ms-input-placeholder {\n color: #aaaaaa;\n font-weight: 400;\n font-size: 14px;\n}\n.signup-module_form_control__7s76W::-webkit-input-placeholder {\n color: #aaaaaa;\n font-weight: 400;\n font-size: 14px;\n}\n.signup-module_form_control__7s76W {\n /* background-image: linear-gradient(to top, #000 2px, rgba(156, 39, 176, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px); */\n}\n.signup-module_form_control_border_none__HjUMS {\n background-image: none;\n}\n.signup-module_form_control__7s76W.signup-module_disabled__h55ao,\n.signup-module_form_control__7s76W:disabled,\n.signup-module_form_control__7s76W[disabled] {\n /* background-image: linear-gradient(to right, #d2d2d2 0%, #d2d2d2 30%, transparent 30%, transparent 100%); */\n /* background-repeat: repeat-x;\n background-size: 3px 1px; */\n cursor: not-allowed;\n}\n@media screen and (max-width: 500px) {\n .signup-module_form_control__7s76W {\n /* padding: 0 5px !important; */\n }\n .signup-module_login_input_icon__RDTS0 {\n padding-left: 0 !important;\n }\n .signup-module_rightContainer__yEcoL {\n border-radius: 15px 15px 0 0 !important;\n }\n .signup-module_leftcontainer__bqfnN {\n border-radius: 15px 15px 0 0 !important;\n }\n}\n.signup-module_form_controltextarea__-LGz6{\n min-height: 10vh !important;\n}\n.signup-module_checkbox__8ejBx {\n --border: #022648;\n --border-hover: #959ed0;\n --tick: #fff;\n position: relative;\n /* color: var(--cardheader); */\n}\n.signup-module_checkbox_label__d84Q2 {\n font-size: 16px;\n text-transform: capitalize;\n font-weight: 500;\n cursor: pointer;\n}\n.signup-module_checkbox__8ejBx:hover {\n /* color: var(--border-hover); */\n}\n.signup-module_checkbox__8ejBx input,\n.signup-module_checkbox__8ejBx svg {\n width: 16px;\n height: 16px;\n display: block;\n}\n.signup-module_checkbox_sub__WQLUX input {\n width: 15px;\n height: 15px;\n}\n.signup-module_checkbox__8ejBx input {\n -webkit-appearance: none;\n -moz-appearance: none;\n position: relative;\n outline: none;\n background: white;\n border: none;\n margin: 0;\n padding: 0;\n cursor: pointer;\n border-radius: 4px;\n transition: box-shadow 0.3s;\n box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));\n}\n.signup-module_checkbox__8ejBx input:disabled {\n cursor: not-allowed;\n}\n.signup-module_checkbox__8ejBx input:hover {\n /* --s: 2px; */\n /* --b: var(--border-hover); */\n}\n.signup-module_checkbox__8ejBx input:checked {\n /* --b: var(--secondary); */\n}\n.signup-module_checkbox__8ejBx svg {\n pointer-events: none;\n fill: none;\n stroke-width: 2px;\n stroke-linecap: round;\n stroke-linejoin: round;\n /* stroke: var(--stroke, var(--secondary)); */\n position: absolute;\n top: 0;\n left: 0;\n width: 16px;\n height: 21px;\n transform: scale(var(--scale, 1)) translateZ(0);\n}\n.signup-module_checkbox_sub__WQLUX svg {\n pointer-events: none;\n fill: none;\n stroke-width: 2px;\n stroke-linecap: round;\n stroke-linejoin: round;\n stroke: var(--stroke, var(--secondary));\n position: absolute;\n top: 0;\n left: 0;\n width: 16px;\n height: 21px;\n transform: scale(var(--scale, 1)) translateZ(0);\n}\n.signup-module_checkboxtranslated__4xHR- svg {\n right: 0;\n}\n.signup-module_checkbox__8ejBx input:checked {\n --s: 2px;\n transition-delay: 0.4s;\n}\n.signup-module_checkbox__8ejBx input:checked + svg {\n --a: 16.1 86.12;\n --o: 102.22;\n}\n.signup-module_checkbox__8ejBx svg {\n stroke-dasharray: var(--a, 86.12);\n stroke-dashoffset: var(--o, 86.12);\n transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;\n}\n";
|
|
1093
|
-
var loginstyles = {"rightContainer":"signup-module_rightContainer__yEcoL","rightContainerTrans":"signup-module_rightContainerTrans__fkdBH","rightContainerText":"signup-module_rightContainerText__-pvN-","form_control":"signup-module_form_control__7s76W","anim-shadow":"signup-module_anim-shadow__CsxhG","login_input_icon":"signup-module_login_input_icon__RDTS0","form_control_border_none":"signup-module_form_control_border_none__HjUMS","disabled":"signup-module_disabled__h55ao","leftcontainer":"signup-module_leftcontainer__bqfnN","form_controltextarea":"signup-module_form_controltextarea__-LGz6","checkbox":"signup-module_checkbox__8ejBx","checkbox_label":"signup-module_checkbox_label__d84Q2","checkbox_sub":"signup-module_checkbox_sub__WQLUX","checkboxtranslated":"signup-module_checkboxtranslated__4xHR-"};
|
|
1112
|
+
var css_248z$J = "@media screen and (max-width: 800px) {\n .signup-module_rightContainer__yEcoL,\n .signup-module_rightContainerTrans__fkdBH {\n border-top-right-radius: 0 !important;\n border-bottom-right-radius: 15px !important;\n border-bottom-left-radius: 15px !important;\n }\n .signup-module_rightContainerText__-pvN- {\n font-size: 23px !important;\n }\n}\n.signup-module_form_control__7s76W:focus {\n -webkit-animation: signup-module_anim-shadow__CsxhG 0.5s ease-in-out forwards;\n animation: signup-module_anim-shadow__CsxhG 0.5s ease-in-out forwards;\n}\n.signup-module_form_control__7s76W:focus + .signup-module_login_input_icon__RDTS0 {\n padding-left: 20px;\n}\n/* Forms */\n.signup-module_form_control__7s76W {\n display: block;\n width: 100%;\n /* height: 35px; */\n /* font-size: 1rem; */\n /* color: var(--cardtitle); */\n /* background: no-repeat center bottom, center calc(100% - 1px); */\n /* background-size: 0 100%, 100% 100%; */\n background-clip: padding-box;\n /* font-size: 14px; */\n /* transition: background 0s ease-out; */\n /* border: 0; */\n padding: 0 15px;\n font-weight: 500;\n display: flex;\n align-items: center;\n position: relative;\n}\n@media screen and (prefers-reduced-motion: reduce) {\n .signup-module_form_control__7s76W {\n transition: none;\n }\n}\n.signup-module_form_control__7s76W::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n.signup-module_form_control__7s76W:focus {\n outline: 0;\n}\n.signup-module_form_control__7s76W::placeholder {\n opacity: 1;\n}\n.signup-module_form_control__7s76W:disabled,\n.signup-module_form_control__7s76W[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n cursor: not-allowed;\n}\ntextarea.signup-module_form_control__7s76W {\n height: auto;\n}\n.signup-module_form_control__7s76W:focus {\n /* background-size: 100% 100%, 100% 100%; */\n transition-duration: 0.3s;\n box-shadow: none;\n}\n.signup-module_form_control__7s76W::-moz-placeholder {\n color: #aaaaaa;\n font-weight: 400;\n font-size: 14px;\n}\n.signup-module_form_control__7s76W:-ms-input-placeholder {\n color: #aaaaaa;\n font-weight: 400;\n font-size: 14px;\n}\n.signup-module_form_control__7s76W::-webkit-input-placeholder {\n color: #aaaaaa;\n font-weight: 400;\n font-size: 14px;\n}\n.signup-module_form_control__7s76W {\n /* background-image: linear-gradient(to top, #000 2px, rgba(156, 39, 176, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px); */\n}\n.signup-module_form_control_border_none__HjUMS {\n background-image: none;\n}\n.signup-module_form_control__7s76W.signup-module_disabled__h55ao,\n.signup-module_form_control__7s76W:disabled,\n.signup-module_form_control__7s76W[disabled] {\n /* background-image: linear-gradient(to right, #d2d2d2 0%, #d2d2d2 30%, transparent 30%, transparent 100%); */\n /* background-repeat: repeat-x;\n background-size: 3px 1px; */\n cursor: not-allowed;\n}\n@media screen and (max-width: 500px) {\n .signup-module_form_control__7s76W {\n /* padding: 0 5px !important; */\n }\n .signup-module_login_input_icon__RDTS0 {\n padding-left: 0 !important;\n }\n .signup-module_rightContainer__yEcoL {\n border-radius: 15px 15px 0 0 !important;\n }\n .signup-module_leftcontainer__bqfnN {\n border-radius: 15px 15px 0 0 !important;\n }\n}\n.signup-module_form_controltextarea__-LGz6{\n min-height: 10vh !important;\n}\n.signup-module_checkbox__8ejBx {\n --border: #022648;\n --border-hover: #959ed0;\n --tick: #fff;\n position: relative;\n /* color: var(--cardheader); */\n}\n.signup-module_checkbox_label__d84Q2 {\n font-size: 16px;\n text-transform: capitalize;\n font-weight: 500;\n cursor: pointer;\n}\n.signup-module_checkbox__8ejBx:hover {\n /* color: var(--border-hover); */\n}\n.signup-module_checkbox__8ejBx input,\n.signup-module_checkbox__8ejBx svg {\n width: 16px;\n height: 16px;\n display: block;\n}\n.signup-module_checkbox_sub__WQLUX input {\n width: 15px;\n height: 15px;\n}\n.signup-module_checkbox__8ejBx input {\n -webkit-appearance: none;\n -moz-appearance: none;\n position: relative;\n outline: none;\n background: white;\n border: none;\n margin: 0;\n padding: 0;\n cursor: pointer;\n border-radius: 4px;\n transition: box-shadow 0.3s;\n box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));\n}\n.signup-module_checkbox__8ejBx input:disabled {\n cursor: not-allowed;\n}\n.signup-module_checkbox__8ejBx input:hover {\n /* --s: 2px; */\n /* --b: var(--border-hover); */\n}\n.signup-module_checkbox__8ejBx input:checked {\n /* --b: var(--secondary); */\n}\n.signup-module_checkbox__8ejBx svg {\n pointer-events: none;\n fill: none;\n stroke-width: 2px;\n stroke-linecap: round;\n stroke-linejoin: round;\n /* stroke: var(--stroke, var(--secondary)); */\n position: absolute;\n top: 0;\n left: 0;\n width: 16px;\n height: 21px;\n transform: scale(var(--scale, 1)) translateZ(0);\n}\n.signup-module_checkbox_sub__WQLUX svg {\n pointer-events: none;\n fill: none;\n stroke-width: 2px;\n stroke-linecap: round;\n stroke-linejoin: round;\n stroke: var(--stroke, var(--secondary));\n position: absolute;\n top: 0;\n left: 0;\n width: 16px;\n height: 21px;\n transform: scale(var(--scale, 1)) translateZ(0);\n}\n.signup-module_checkboxtranslated__4xHR- svg {\n right: 0;\n}\n.signup-module_checkbox__8ejBx input:checked {\n --s: 2px;\n transition-delay: 0.4s;\n}\n.signup-module_checkbox__8ejBx input:checked + svg {\n --a: 16.1 86.12;\n --o: 102.22;\n}\n.signup-module_checkbox__8ejBx svg {\n stroke-dasharray: var(--a, 86.12);\n stroke-dashoffset: var(--o, 86.12);\n transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;\n}\n\n.signup-module_showpassword_input_icon__cVHRS {\n font-size: 15px;\n color: #999999;\n display: -webkit-box;\n display: -webkit-flex;\n display: -moz-box;\n display: -ms-flexbox;\n display: flex;\n align-items: center;\n position: absolute;\n border-radius: 25px;\n bottom: 15px;\n right: 25px;\n padding-left: 15px;\n\n -webkit-transition: all 0.4s;\n -o-transition: all 0.4s;\n -moz-transition: all 0.4s;\n transition: all 0.4s;\n cursor: pointer !important;\n z-index: 10000000000000000000000 !important;\n}\n.signup-module_showpassword_input_icontrans__vmV5q {\n font-size: 15px;\n color: #999999;\n display: -webkit-box;\n display: -webkit-flex;\n display: -moz-box;\n display: -ms-flexbox;\n display: flex;\n align-items: center;\n position: absolute;\n border-radius: 25px;\n bottom: 15px;\n left: 25px;\n\n -webkit-transition: all 0.4s;\n -o-transition: all 0.4s;\n -moz-transition: all 0.4s;\n transition: all 0.4s;\n cursor: pointer !important;\n z-index: 10000000000000000000000 !important;\n}";
|
|
1113
|
+
var loginstyles = {"rightContainer":"signup-module_rightContainer__yEcoL","rightContainerTrans":"signup-module_rightContainerTrans__fkdBH","rightContainerText":"signup-module_rightContainerText__-pvN-","form_control":"signup-module_form_control__7s76W","anim-shadow":"signup-module_anim-shadow__CsxhG","login_input_icon":"signup-module_login_input_icon__RDTS0","form_control_border_none":"signup-module_form_control_border_none__HjUMS","disabled":"signup-module_disabled__h55ao","leftcontainer":"signup-module_leftcontainer__bqfnN","form_controltextarea":"signup-module_form_controltextarea__-LGz6","checkbox":"signup-module_checkbox__8ejBx","checkbox_label":"signup-module_checkbox_label__d84Q2","checkbox_sub":"signup-module_checkbox_sub__WQLUX","checkboxtranslated":"signup-module_checkboxtranslated__4xHR-","showpassword_input_icon":"signup-module_showpassword_input_icon__cVHRS","showpassword_input_icontrans":"signup-module_showpassword_input_icontrans__vmV5q"};
|
|
1094
1114
|
styleInject(css_248z$J);
|
|
1095
1115
|
|
|
1096
1116
|
function ownKeys$2e(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -1111,18 +1131,18 @@ var defaultstyles = {
|
|
|
1111
1131
|
});
|
|
1112
1132
|
},
|
|
1113
1133
|
control: function control() {
|
|
1114
|
-
|
|
1134
|
+
var _ref;
|
|
1135
|
+
return _ref = {
|
|
1115
1136
|
borderBottom: '1px solid #ccc',
|
|
1116
1137
|
backgroundColor: 'white',
|
|
1117
1138
|
display: 'flex',
|
|
1118
1139
|
cursor: 'pointer',
|
|
1119
1140
|
padding: 0,
|
|
1120
|
-
transition: '.3s'
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
};
|
|
1141
|
+
transition: '.3s'
|
|
1142
|
+
}, _defineProperty(_ref, "backgroundColor", 'transparent'), _defineProperty(_ref, '&:hover', {
|
|
1143
|
+
// boxShadow: '0px 9px 20px rgba(75, 72, 72, 0.3)',
|
|
1144
|
+
// borderRadius: '10px',
|
|
1145
|
+
}), _ref;
|
|
1126
1146
|
},
|
|
1127
1147
|
dropdownIndicator: function dropdownIndicator(provided) {
|
|
1128
1148
|
return _objectSpread$2e(_objectSpread$2e({}, provided), {}, {
|
|
@@ -7828,7 +7848,7 @@ var Viewcart = function Viewcart(props) {
|
|
|
7828
7848
|
fontSize: sectionproperties.noprod_fontSize + 'px'
|
|
7829
7849
|
}
|
|
7830
7850
|
}, langdetect == 'en' ? sectionproperties.nocards_content_en : sectionproperties.nocards_content_ar)))))), /*#__PURE__*/React.createElement("div", {
|
|
7831
|
-
className: langdetect == 'en' ? ' col-lg-3 pr-0 ' : ' col-lg-3 pl-0 '
|
|
7851
|
+
className: langdetect == 'en' ? ' col-lg-3 pr-0 px-sm-0 mb-4 ' : ' col-lg-3 pl-0 px-sm-0 mb-4'
|
|
7832
7852
|
}, Summary()))))));
|
|
7833
7853
|
};
|
|
7834
7854
|
|
|
@@ -9072,7 +9092,7 @@ var Select$1 = /*#__PURE__*/React.lazy(function () {
|
|
|
9072
9092
|
return import('react-select');
|
|
9073
9093
|
});
|
|
9074
9094
|
var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
9075
|
-
var _fetchAuthorizationQu, _fetchAuthorizationQu2, _fetchAuthorizationQu3, _fetchAuthorizationQu4, _fetchAuthorizationQu5, _fetchAuthorizationQu6, _css, _authdetailsContext$c, _authdetailsContext$c2;
|
|
9095
|
+
var _fetchAuthorizationQu, _fetchAuthorizationQu2, _fetchAuthorizationQu3, _fetchAuthorizationQu4, _fetchAuthorizationQu5, _fetchAuthorizationQu6, _css, _authdetailsContext$i2, _authdetailsContext$c, _authdetailsContext$c2;
|
|
9076
9096
|
var lang = props.actions.lang;
|
|
9077
9097
|
var langdetect = props.actions.langdetect;
|
|
9078
9098
|
props.actions.routingcountext;
|
|
@@ -9140,6 +9160,18 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9140
9160
|
_useState14 = _slicedToArray(_useState13, 2),
|
|
9141
9161
|
payloadobj = _useState14[0],
|
|
9142
9162
|
setpayloadobj = _useState14[1];
|
|
9163
|
+
var _useState15 = useState(false),
|
|
9164
|
+
_useState16 = _slicedToArray(_useState15, 2);
|
|
9165
|
+
_useState16[0];
|
|
9166
|
+
_useState16[1];
|
|
9167
|
+
var _useState17 = useState(false),
|
|
9168
|
+
_useState18 = _slicedToArray(_useState17, 2);
|
|
9169
|
+
_useState18[0];
|
|
9170
|
+
_useState18[1];
|
|
9171
|
+
var _useState19 = useState(false),
|
|
9172
|
+
_useState20 = _slicedToArray(_useState19, 2),
|
|
9173
|
+
waitingpage = _useState20[0],
|
|
9174
|
+
setwaitingpage = _useState20[1];
|
|
9143
9175
|
useEffect(function () {
|
|
9144
9176
|
if (fetchAuthorizationQueryContext.isSuccess) {
|
|
9145
9177
|
var _fetchAuthorizationQu7, _fetchAuthorizationQu8, _fetchAuthorizationQu9, _fetchAuthorizationQu10, _fetchAuthorizationQu11, _fetchAuthorizationQu12;
|
|
@@ -9197,10 +9229,15 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9197
9229
|
var isshippingaddresscompleted = false;
|
|
9198
9230
|
var passwordvalidation = false;
|
|
9199
9231
|
if (authdetailsContext.loggedin == false) {
|
|
9200
|
-
|
|
9201
|
-
|
|
9202
|
-
|
|
9232
|
+
var _authdetailsContext$i;
|
|
9233
|
+
if ((authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.ispasswordrequired_signup) == 1) {
|
|
9234
|
+
if (payloadobj.password.length != 0) {
|
|
9235
|
+
if (payloadobj.password == payloadobj.password2) {
|
|
9236
|
+
passwordvalidation = true;
|
|
9237
|
+
}
|
|
9203
9238
|
}
|
|
9239
|
+
} else {
|
|
9240
|
+
passwordvalidation = true;
|
|
9204
9241
|
}
|
|
9205
9242
|
} else if (authdetailsContext.loggedin == true) {
|
|
9206
9243
|
if (payloadobj.password.length != 0) {
|
|
@@ -9262,6 +9299,9 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9262
9299
|
}
|
|
9263
9300
|
temppayloadobj.addedsourcetype = 'Webapp';
|
|
9264
9301
|
temppayloadobj.instapikey = instapikey;
|
|
9302
|
+
if (sectionproperties.redirectsaftersignup != 'Home') {
|
|
9303
|
+
setwaitingpage(true);
|
|
9304
|
+
}
|
|
9265
9305
|
CustomerSignUpMutationContext.mutate(temppayloadobj);
|
|
9266
9306
|
}
|
|
9267
9307
|
};
|
|
@@ -9379,7 +9419,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9379
9419
|
payloadobjchange('name', event.target.value);
|
|
9380
9420
|
},
|
|
9381
9421
|
style: {
|
|
9382
|
-
background:
|
|
9422
|
+
background: sectionproperties.input_bgcolor
|
|
9383
9423
|
}
|
|
9384
9424
|
})), /*#__PURE__*/React.createElement("div", {
|
|
9385
9425
|
className: sectionproperties.cardstyletype == 'Style 1' ? 'col-lg-4 col-md-12 col-sm-12 mb-4 p-sm-0' : 'col-lg-12 col-md-12 col-sm-12 mb-4 p-sm-0'
|
|
@@ -9395,7 +9435,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9395
9435
|
payloadobjchange('email', event.target.value);
|
|
9396
9436
|
},
|
|
9397
9437
|
style: {
|
|
9398
|
-
background:
|
|
9438
|
+
background: sectionproperties.input_bgcolor
|
|
9399
9439
|
}
|
|
9400
9440
|
})), /*#__PURE__*/React.createElement("div", {
|
|
9401
9441
|
className: sectionproperties.cardstyletype == 'Style 1' ? 'col-lg-4 col-md-12 col-sm-12 mb-4 p-sm-0' : 'col-lg-12 col-md-12 col-sm-12 mb-4 p-sm-0'
|
|
@@ -9418,7 +9458,8 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9418
9458
|
},
|
|
9419
9459
|
|
|
9420
9460
|
style: {
|
|
9421
|
-
direction: 'ltr'
|
|
9461
|
+
direction: 'ltr',
|
|
9462
|
+
color: sectionproperties.inputfieldcolor
|
|
9422
9463
|
}
|
|
9423
9464
|
})));
|
|
9424
9465
|
};
|
|
@@ -9597,7 +9638,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9597
9638
|
},
|
|
9598
9639
|
style: {
|
|
9599
9640
|
resize: 'none',
|
|
9600
|
-
background:
|
|
9641
|
+
background: sectionproperties.input_bgcolor
|
|
9601
9642
|
}
|
|
9602
9643
|
}), /*#__PURE__*/React.createElement("span", {
|
|
9603
9644
|
className: loginstyles.login_input_focus
|
|
@@ -9612,7 +9653,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9612
9653
|
className: "".concat(formstyles.input_label_name) + ' d-flex align-items-start '
|
|
9613
9654
|
}, lang.password), /*#__PURE__*/React.createElement("input", {
|
|
9614
9655
|
className: "".concat(loginstyles.form_control, " ").concat(formstyles.form_control),
|
|
9615
|
-
type:
|
|
9656
|
+
type: 'password',
|
|
9616
9657
|
autocomplete: "new-password",
|
|
9617
9658
|
textplaceholder: "",
|
|
9618
9659
|
value: payloadobj.password,
|
|
@@ -9726,19 +9767,50 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9726
9767
|
})));
|
|
9727
9768
|
})));
|
|
9728
9769
|
};
|
|
9770
|
+
var SignUpButtonContent = function SignUpButtonContent() {
|
|
9771
|
+
return /*#__PURE__*/React.createElement("button", {
|
|
9772
|
+
className: "".concat(formstyles.signupbtn) + ' d-flex align-items-center justify-content-center ',
|
|
9773
|
+
disabled: CustomerSignUpMutationContext.isLoading ? true : false,
|
|
9774
|
+
onClick: function onClick() {
|
|
9775
|
+
if (verifypayload() == true) {
|
|
9776
|
+
if (customervalidateemail == 1) {
|
|
9777
|
+
setvalidateemailmodal(true);
|
|
9778
|
+
} else {
|
|
9779
|
+
signupbuttonfunc();
|
|
9780
|
+
}
|
|
9781
|
+
}
|
|
9782
|
+
}
|
|
9783
|
+
}, CustomerSignUpMutationContext.isLoading && /*#__PURE__*/React.createElement(CircularProgress, {
|
|
9784
|
+
color: "#fff",
|
|
9785
|
+
width: "20px",
|
|
9786
|
+
height: "20px",
|
|
9787
|
+
duration: "1s"
|
|
9788
|
+
}), !CustomerSignUpMutationContext.isLoading && /*#__PURE__*/React.createElement(React.Fragment, null, authdetailsContext.loggedin != true && /*#__PURE__*/React.createElement("span", {
|
|
9789
|
+
style: {
|
|
9790
|
+
letterSpacing: langdetect == 'en' ? '1px' : ''
|
|
9791
|
+
}
|
|
9792
|
+
}, langdetect == 'en' ? sectionproperties.signupbtn_contenten : sectionproperties.signupbtn_contentar), authdetailsContext.loggedin == true && /*#__PURE__*/React.createElement("span", {
|
|
9793
|
+
style: {
|
|
9794
|
+
letterSpacing: langdetect == 'en' ? '1px' : ''
|
|
9795
|
+
}
|
|
9796
|
+
}, lang.update)));
|
|
9797
|
+
};
|
|
9729
9798
|
return /*#__PURE__*/React.createElement("div", {
|
|
9730
|
-
className: "row m-0 w-100 d-flex justify-content-center"
|
|
9799
|
+
className: "row m-0 w-100 d-flex justify-content-center",
|
|
9800
|
+
style: {
|
|
9801
|
+
// heigh: '100%',
|
|
9802
|
+
}
|
|
9731
9803
|
}, !dataloaded && /*#__PURE__*/React.createElement(CircularProgress, {
|
|
9732
9804
|
color: "black",
|
|
9733
9805
|
width: "20px",
|
|
9734
9806
|
height: "20px",
|
|
9735
9807
|
duration: "1s"
|
|
9736
|
-
}), dataloaded && props.srcfromprops == 'signup' && /*#__PURE__*/React.createElement("div", {
|
|
9808
|
+
}), dataloaded && props.srcfromprops == 'signup' && waitingpage == false && /*#__PURE__*/React.createElement("div", {
|
|
9737
9809
|
className: "col-lg-12 p-0",
|
|
9738
9810
|
style: {
|
|
9739
|
-
background:
|
|
9811
|
+
background: sectionproperties.formLeftbgColor
|
|
9740
9812
|
}
|
|
9741
|
-
}, PersonalInformation(), Address(), Otherinformation(), Password()), dataloaded && props.srcfromprops == 'accountinfo' && /*#__PURE__*/React.createElement("div", {
|
|
9813
|
+
}, PersonalInformation(), Address(), Otherinformation(), sectionproperties.hidepassword == 'Show' && (authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i2 = authdetailsContext.instinfo) === null || _authdetailsContext$i2 === void 0 ? void 0 : _authdetailsContext$i2.ispasswordrequired_signup) == 1 && Password()), dataloaded && props.srcfromprops == 'accountinfo' && /*#__PURE__*/React.createElement("div", {
|
|
9742
9814
|
className: "col-lg-12 p-0"
|
|
9743
9815
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9744
9816
|
className: "row ml-0 mr-0 w-100"
|
|
@@ -9802,7 +9874,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9802
9874
|
borderBottomLeftRadius: sectionproperties.borderBottomLeftRadius + 'px',
|
|
9803
9875
|
borderBottomRightRadius: sectionproperties.borderBottomRightRadius + 'px'
|
|
9804
9876
|
},
|
|
9805
|
-
className: "p-2"
|
|
9877
|
+
className: "p-2 w-100"
|
|
9806
9878
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9807
9879
|
className: "row ml-0 mr-0"
|
|
9808
9880
|
}, /*#__PURE__*/React.createElement("div", {
|
|
@@ -9824,7 +9896,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9824
9896
|
display: sectionproperties.hidecountrystatecity == 'Show' && sectionproperties.hideaddress == 'Show' ? 'flex' : 'none'
|
|
9825
9897
|
}
|
|
9826
9898
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9827
|
-
className: 'p-2',
|
|
9899
|
+
className: 'p-2 w-100',
|
|
9828
9900
|
style: {
|
|
9829
9901
|
background: sectionproperties.backgroundColor,
|
|
9830
9902
|
borderTopLeftRadius: sectionproperties.borderTopLeftRadius + 'px',
|
|
@@ -9850,7 +9922,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9850
9922
|
}))), Address())), /*#__PURE__*/React.createElement("div", {
|
|
9851
9923
|
className: "col-lg-12 mb-3 p-0"
|
|
9852
9924
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9853
|
-
className: 'p-2',
|
|
9925
|
+
className: 'p-2 w-100',
|
|
9854
9926
|
style: {
|
|
9855
9927
|
background: sectionproperties.backgroundColor,
|
|
9856
9928
|
borderTopLeftRadius: sectionproperties.borderTopLeftRadius + 'px',
|
|
@@ -9885,7 +9957,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9885
9957
|
borderBottomLeftRadius: sectionproperties.borderBottomLeftRadius + 'px',
|
|
9886
9958
|
borderBottomRightRadius: sectionproperties.borderBottomRightRadius + 'px'
|
|
9887
9959
|
},
|
|
9888
|
-
className: "p-2"
|
|
9960
|
+
className: "p-2 w-100"
|
|
9889
9961
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9890
9962
|
className: "row ml-0 mr-0"
|
|
9891
9963
|
}, /*#__PURE__*/React.createElement("div", {
|
|
@@ -9917,34 +9989,9 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9917
9989
|
onClick: function onClick() {
|
|
9918
9990
|
window.open(window.location.origin + '/policies', '_blank');
|
|
9919
9991
|
}
|
|
9920
|
-
}, langdetect == 'en' ? 'Terms & Conditions' : 'الشروط و الاحكام'))), /*#__PURE__*/React.createElement("div", {
|
|
9992
|
+
}, langdetect == 'en' ? 'Terms & Conditions' : 'الشروط و الاحكام'))), waitingpage == false && /*#__PURE__*/React.createElement("div", {
|
|
9921
9993
|
className: "col-lg-12 col-md-12 col-sm-12 d-flex align-items-center justify-content-center mb-3 mt-3"
|
|
9922
|
-
}, /*#__PURE__*/React.createElement("
|
|
9923
|
-
className: "".concat(formstyles.signupbtn) + ' d-flex align-items-center justify-content-center ',
|
|
9924
|
-
disabled: CustomerSignUpMutationContext.isLoading ? true : false,
|
|
9925
|
-
onClick: function onClick() {
|
|
9926
|
-
if (verifypayload() == true) {
|
|
9927
|
-
if (customervalidateemail == 1) {
|
|
9928
|
-
setvalidateemailmodal(true);
|
|
9929
|
-
} else {
|
|
9930
|
-
signupbuttonfunc();
|
|
9931
|
-
}
|
|
9932
|
-
}
|
|
9933
|
-
}
|
|
9934
|
-
}, CustomerSignUpMutationContext.isLoading && /*#__PURE__*/React.createElement(CircularProgress, {
|
|
9935
|
-
color: "#fff",
|
|
9936
|
-
width: "20px",
|
|
9937
|
-
height: "20px",
|
|
9938
|
-
duration: "1s"
|
|
9939
|
-
}), !CustomerSignUpMutationContext.isLoading && /*#__PURE__*/React.createElement(React.Fragment, null, authdetailsContext.loggedin != true && /*#__PURE__*/React.createElement("span", {
|
|
9940
|
-
style: {
|
|
9941
|
-
letterSpacing: langdetect == 'en' ? '1px' : ''
|
|
9942
|
-
}
|
|
9943
|
-
}, langdetect == 'en' ? sectionproperties.signupbtn_contenten : sectionproperties.signupbtn_contentar), authdetailsContext.loggedin == true && /*#__PURE__*/React.createElement("span", {
|
|
9944
|
-
style: {
|
|
9945
|
-
letterSpacing: langdetect == 'en' ? '1px' : ''
|
|
9946
|
-
}
|
|
9947
|
-
}, lang.update)))), props.srcfromprops == 'signup' && /*#__PURE__*/React.createElement("div", {
|
|
9994
|
+
}, authdetailsContext.loggedin == false && SignUpButtonContent(), authdetailsContext.loggedin == true && sectionproperties.showupdatebtn == 'Show' && SignUpButtonContent()), props.srcfromprops == 'signup' && waitingpage == false && /*#__PURE__*/React.createElement("div", {
|
|
9948
9995
|
className: "row m-0 w-100"
|
|
9949
9996
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9950
9997
|
className: "col-lg-12 col-md-12 col-sm-12 d-flex d-md-none align-items-center justify-content-center mb-2"
|
|
@@ -9968,7 +10015,25 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9968
10015
|
className: "ml-1 mr-1"
|
|
9969
10016
|
}, /*#__PURE__*/React.createElement(GoogleLoginButton, {
|
|
9970
10017
|
actions: actions
|
|
9971
|
-
})))), /*#__PURE__*/React.createElement(
|
|
10018
|
+
})))), waitingpage == true && /*#__PURE__*/React.createElement("div", {
|
|
10019
|
+
"class": "col-lg-12 allcentered my-5"
|
|
10020
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
10021
|
+
"class": "row m-0 w-100"
|
|
10022
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
10023
|
+
"class": "col-lg-12 allcentered"
|
|
10024
|
+
}, /*#__PURE__*/React.createElement("p", {
|
|
10025
|
+
style: {
|
|
10026
|
+
color: sectionproperties.waitingapprovalcolor,
|
|
10027
|
+
fontSize: sectionproperties.waitingapprovalfontsize + 'px'
|
|
10028
|
+
}
|
|
10029
|
+
}, langdetect == 'en' ? sectionproperties.waitingapprovaltest_en : sectionproperties.waitingapprovaltest_ar)), /*#__PURE__*/React.createElement("div", {
|
|
10030
|
+
"class": "col-lg-12 allcentered"
|
|
10031
|
+
}, /*#__PURE__*/React.createElement("p", {
|
|
10032
|
+
style: {
|
|
10033
|
+
color: sectionproperties.waitingapprovalcolor2,
|
|
10034
|
+
fontSize: sectionproperties.waitingapprovalfontsize2 + 'px'
|
|
10035
|
+
}
|
|
10036
|
+
}, langdetect == 'en' ? sectionproperties.waitingapprovaltest_en2 : sectionproperties.waitingapprovaltest_ar2)))), /*#__PURE__*/React.createElement(Modal, {
|
|
9972
10037
|
show: validateemailmodal,
|
|
9973
10038
|
onHide: function onHide() {
|
|
9974
10039
|
return setvalidateemailmodal(false);
|
|
@@ -10204,6 +10269,11 @@ var Signup = function Signup(props) {
|
|
|
10204
10269
|
};
|
|
10205
10270
|
var SignupContent = function SignupContent() {
|
|
10206
10271
|
return /*#__PURE__*/React.createElement("div", {
|
|
10272
|
+
"class": "col-lg-12 p-0",
|
|
10273
|
+
style: {
|
|
10274
|
+
height: '100%'
|
|
10275
|
+
}
|
|
10276
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
10207
10277
|
className: 'row m-0 w-100 pl-3 pr-3 d-flex align-items-center justify-content-center pl-md-3 pr-md-3 p-sm-0'
|
|
10208
10278
|
}, /*#__PURE__*/React.createElement("div", {
|
|
10209
10279
|
className: "col-lg-12 col-md-12 col-sm-12 d-flex align-items-center justify-content-center mt-3",
|
|
@@ -10233,10 +10303,7 @@ var Signup = function Signup(props) {
|
|
|
10233
10303
|
className: 'col-lg-12 col-md-12 col-sm-12 pt-4 pb-4 d-flex align-items-stretch',
|
|
10234
10304
|
style: {
|
|
10235
10305
|
background: sectionproperties.formLeftbgColor,
|
|
10236
|
-
|
|
10237
|
-
borderTopLeftRadius: sectionproperties.formLeft_bordertopleftradius + 'px',
|
|
10238
|
-
borderBottomRightRadius: sectionproperties.formLeft_borderbottomrightadius + 'px',
|
|
10239
|
-
borderBottomLeftRadius: sectionproperties.formLeft_borderbottomleftadius + 'px'
|
|
10306
|
+
borderRadius: '10px'
|
|
10240
10307
|
}
|
|
10241
10308
|
}, !SocialLoginMutationContext.isLoading && /*#__PURE__*/React.createElement("div", {
|
|
10242
10309
|
"class": "row m-0 w-100"
|
|
@@ -10256,23 +10323,26 @@ var Signup = function Signup(props) {
|
|
|
10256
10323
|
width: "40px",
|
|
10257
10324
|
height: "40px",
|
|
10258
10325
|
duration: "1s"
|
|
10259
|
-
})))))));
|
|
10326
|
+
}))))))));
|
|
10260
10327
|
};
|
|
10261
10328
|
return /*#__PURE__*/React.createElement("div", {
|
|
10262
10329
|
className: "col-lg-12 d-flex align-items-center justify-content-center pt-md-3 pb-5",
|
|
10263
10330
|
style: {
|
|
10264
10331
|
background: sectionproperties.backgroundColor,
|
|
10265
|
-
marginBottom: sectionproperties.marginBottom + 'px'
|
|
10332
|
+
marginBottom: sectionproperties.marginBottom + 'px',
|
|
10333
|
+
height: sectionproperties.height != null ? sectionproperties.height + 'vh' : 'auto'
|
|
10266
10334
|
}
|
|
10267
10335
|
}, /*#__PURE__*/React.createElement("div", {
|
|
10268
10336
|
"class": "row ml-0 mr-0 w-100 d-flex d-md-none",
|
|
10269
10337
|
style: {
|
|
10270
|
-
marginTop: sectionproperties.marginTop + 'px'
|
|
10338
|
+
marginTop: sectionproperties.marginTop + 'px',
|
|
10339
|
+
height: '100%'
|
|
10271
10340
|
}
|
|
10272
10341
|
}, SignupContent()), /*#__PURE__*/React.createElement("div", {
|
|
10273
10342
|
"class": "row ml-0 mr-0 w-100 d-none d-md-flex",
|
|
10274
10343
|
style: {
|
|
10275
|
-
marginTop: sectionproperties.marginTopResp + 'px'
|
|
10344
|
+
marginTop: sectionproperties.marginTopResp + 'px',
|
|
10345
|
+
height: '100%'
|
|
10276
10346
|
}
|
|
10277
10347
|
}, SignupContent()));
|
|
10278
10348
|
};
|
|
@@ -15847,7 +15917,7 @@ var DownloadApp = function DownloadApp(props) {
|
|
|
15847
15917
|
function ownKeys$1P(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
15848
15918
|
function _objectSpread$1P(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$1P(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$1P(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
15849
15919
|
var Gotoheader = function Gotoheader(props) {
|
|
15850
|
-
var _logoarrayofobjects$, _logoarrayofobjects$2, _fetchcustomercartQue4, _fetchcustomercartQue5, _fetchcustomercartQue6, _fetchcustomercartQue7, _fetchcustomercartQue8, _fetchcustomercartQue9;
|
|
15920
|
+
var _logoarrayofobjects$, _logoarrayofobjects$2, _fetchcustomercartQue4, _fetchcustomercartQue5, _fetchcustomercartQue6, _fetchcustomercartQue7, _fetchcustomercartQue8, _fetchcustomercartQue9, _logoarrayofobjects$3, _logoarrayofobjects$4;
|
|
15851
15921
|
var _useState = useState(''),
|
|
15852
15922
|
_useState2 = _slicedToArray(_useState, 2),
|
|
15853
15923
|
sectionproperties = _useState2[0],
|
|
@@ -16119,19 +16189,18 @@ var Gotoheader = function Gotoheader(props) {
|
|
|
16119
16189
|
})
|
|
16120
16190
|
};
|
|
16121
16191
|
return /*#__PURE__*/React.createElement("div", {
|
|
16122
|
-
|
|
16123
|
-
style:
|
|
16124
|
-
position: 'relative',
|
|
16125
|
-
zIndex: 1000
|
|
16126
|
-
}
|
|
16192
|
+
className: "".concat(headerstyles$g.header_container) + ' row m-0 w-100 d-flex justify-content-center '
|
|
16193
|
+
// class={`${headerstyles.header_container}` + ' row m-0 w-100 d-flex justify-content-center '} style={{ position: 'relative', zIndex: 1000 }}
|
|
16127
16194
|
}, /*#__PURE__*/React.createElement("div", {
|
|
16195
|
+
// className={' row m-0 d-md-none '}
|
|
16128
16196
|
"class": "row m-0 d-md-none",
|
|
16129
16197
|
style: {
|
|
16130
16198
|
position: sectionproperties.headerstyles_position,
|
|
16131
16199
|
marginTop: sectionproperties.header_marginTop + 'px',
|
|
16132
16200
|
marginBottom: sectionproperties.header_marginBottom + 'px',
|
|
16133
16201
|
width: '100vw',
|
|
16134
|
-
top: 0
|
|
16202
|
+
top: 0,
|
|
16203
|
+
display: !authdetailsContext.loggedin && sectionproperties.hideheaderwhenloggedin == 'Hide' ? 'none' : 'flex'
|
|
16135
16204
|
}
|
|
16136
16205
|
}, sectionproperties.showdownloadapp == 'Show' && /*#__PURE__*/React.createElement(DownloadApp, {
|
|
16137
16206
|
sectionpropertiesprops: sectionproperties,
|
|
@@ -16498,10 +16567,36 @@ var Gotoheader = function Gotoheader(props) {
|
|
|
16498
16567
|
paddingRightprops: '45px',
|
|
16499
16568
|
subheadercontentpositionprops: 'start'
|
|
16500
16569
|
}
|
|
16501
|
-
}))), /*#__PURE__*/React.createElement(
|
|
16570
|
+
}))), !authdetailsContext.loggedin && sectionproperties.hideheaderwhenloggedin == 'Hide' && /*#__PURE__*/React.createElement("div", {
|
|
16571
|
+
className: ' row m-0 ',
|
|
16572
|
+
style: {
|
|
16573
|
+
position: sectionproperties.headerstyles_position,
|
|
16574
|
+
marginTop: sectionproperties.header_marginTop + 'px',
|
|
16575
|
+
marginBottom: sectionproperties.header_marginBottom + 'px',
|
|
16576
|
+
width: '100vw',
|
|
16577
|
+
top: 0
|
|
16578
|
+
}
|
|
16579
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
16580
|
+
"class": "".concat(header_cssstyles.top_bar) + ' row m-0 w-100 d-flex align-items-center '
|
|
16581
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
16582
|
+
"class": "col-lg-12 allcentered p-0"
|
|
16583
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
16584
|
+
"class": "".concat(header_cssstyles.header_logo)
|
|
16585
|
+
}, /*#__PURE__*/React.createElement(Imagekitimagecomp, {
|
|
16586
|
+
urlEndpoint: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimageendpoint,
|
|
16587
|
+
publicKey: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimagepublickey,
|
|
16588
|
+
path: langdetect == 'en' ? (_logoarrayofobjects$3 = logoarrayofobjects[0]) === null || _logoarrayofobjects$3 === void 0 ? void 0 : _logoarrayofobjects$3.englishlogo : (_logoarrayofobjects$4 = logoarrayofobjects[0]) === null || _logoarrayofobjects$4 === void 0 ? void 0 : _logoarrayofobjects$4.arabiclogo,
|
|
16589
|
+
style: {
|
|
16590
|
+
width: '100%',
|
|
16591
|
+
height: '100%',
|
|
16592
|
+
objectFit: 'contain'
|
|
16593
|
+
}
|
|
16594
|
+
}))))), /*#__PURE__*/React.createElement("div", {
|
|
16595
|
+
className: !authdetailsContext.loggedin && sectionproperties.hideheaderwhenloggedin == 'Hide' ? ' row m-0 w-100 d-none justify-content-center ' : authdetailsContext.loggedin ? 'row m-0 w-100 d-flex justify-content-centet' : ' row m-0 w-100 d-flex justify-content-center '
|
|
16596
|
+
}, /*#__PURE__*/React.createElement(Headerresponsive, {
|
|
16502
16597
|
sectionpropertiesprops: sectionproperties,
|
|
16503
16598
|
actions: actions
|
|
16504
|
-
}));
|
|
16599
|
+
})));
|
|
16505
16600
|
};
|
|
16506
16601
|
|
|
16507
16602
|
var css_248z$A = ".CategoryFeaturingHeader-module_lowerHeaderContainer__bQvQY {\n display: flex;\n align-items: center;\n align-content: center;\n position: relative;\n z-index: 1000;\n transition: all 0.2s;\n}\n.CategoryFeaturingHeader-module_lowerHeaderContainer__bQvQY .CategoryFeaturingHeader-module_navbar__KrZoa {\n padding: 0;\n}\n.CategoryFeaturingHeader-module_lowerHeaderContainer__bQvQY .CategoryFeaturingHeader-module_navbar__KrZoa ul {\n margin: 0;\n padding: 0;\n display: flex;\n list-style: none;\n align-items: center;\n}\n.CategoryFeaturingHeader-module_lowerHeaderContainer__bQvQY .CategoryFeaturingHeader-module_navbar__KrZoa ul li {\n position: relative !important;\n}\n.CategoryFeaturingHeader-module_lowerHeaderContainer__bQvQY .CategoryFeaturingHeader-module_navbar_item__x7kUB {\n position: relative;\n cursor: pointer;\n white-space: nowrap;\n display: flex;\n align-items: center;\n}\n/* Badge */\n.CategoryFeaturingHeader-module_badge_counter_header_notifications__OMiIG {\n position: absolute;\n transform: scale(0.3);\n transform-origin: top right;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.CategoryFeaturingHeader-module_searchbar__QVi6T {\n display: inline-block;\n border: none;\n outline: none;\n width: 0px;\n position: absolute;\n top: 0;\n background: none;\n z-index: 3;\n transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);\n cursor: pointer;\n}\n.CategoryFeaturingHeader-module_searchbar__QVi6T:focus {\n width: 300px !important;\n z-index: 1;\n cursor: text;\n}\n.CategoryFeaturingHeader-module_searchbaractive__SDflG {\n display: inline-block;\n z-index: 2;\n cursor: pointer;\n cursor: pointer;\n}\n ";
|
|
@@ -26027,7 +26122,7 @@ var StylishHeader = function StylishHeader(props) {
|
|
|
26027
26122
|
OpenCloseCartSlider = _useState8[0],
|
|
26028
26123
|
setOpenCloseCartSlider = _useState8[1];
|
|
26029
26124
|
return /*#__PURE__*/React.createElement("div", {
|
|
26030
|
-
className: ' row m-0 w-100 d-flex justify-content-center ',
|
|
26125
|
+
className: !authdetailsContext.loggedin && sectionproperties.hideheaderwhenloggedin == 'hide' ? ' row m-0 w-100 d-none justify-content-center ' : ' row m-0 w-100 d-flex justify-content-center ',
|
|
26031
26126
|
style: {
|
|
26032
26127
|
width: '100vw'
|
|
26033
26128
|
}
|
|
@@ -35958,7 +36053,7 @@ var Simplefooter = function Simplefooter(props) {
|
|
|
35958
36053
|
})
|
|
35959
36054
|
};
|
|
35960
36055
|
return /*#__PURE__*/React.createElement("div", {
|
|
35961
|
-
className: "".concat(footerStyles.footerContainer) + ' row m-0 w-100 d-flex justify-content-center px-lg-1 pl-md-4 pr-md-4 pl-sm-2 pr-sm-2 '
|
|
36056
|
+
className: !authdetailsContext.loggedin && sectionproperties.hidefooterwhenlogin == 'Hide' ? "".concat(footerStyles.footerContainer) + ' row m-0 w-100 d-none justify-content-center px-lg-1 pl-md-4 pr-md-4 pl-sm-2 pr-sm-2 ' : authdetailsContext.loggedin ? "".concat(footerStyles.footerContainer) + ' row m-0 w-100 d-flex justify-content-center px-lg-1 pl-md-4 pr-md-4 pl-sm-2 pr-sm-2 ' : "".concat(footerStyles.footerContainer) + ' row m-0 w-100 d-flex justify-content-center px-lg-1 pl-md-4 pr-md-4 pl-sm-2 pr-sm-2 '
|
|
35962
36057
|
}, /*#__PURE__*/React.createElement("div", {
|
|
35963
36058
|
className: "col-lg-4 col-md-12 col-sm-12 d-flex align-items-center justify-content-start p-sm-0"
|
|
35964
36059
|
}, /*#__PURE__*/React.createElement("div", {
|
|
@@ -42472,10 +42567,17 @@ var BackgroundImageWithTopContent = function BackgroundImageWithTopContent(props
|
|
|
42472
42567
|
_useState2 = _slicedToArray(_useState, 2),
|
|
42473
42568
|
sectionproperties = _useState2[0],
|
|
42474
42569
|
setsectionproperties = _useState2[1];
|
|
42475
|
-
var _useState3 = useState(
|
|
42570
|
+
var _useState3 = useState({
|
|
42571
|
+
min: 0,
|
|
42572
|
+
max: 10000
|
|
42573
|
+
}),
|
|
42476
42574
|
_useState4 = _slicedToArray(_useState3, 2),
|
|
42477
|
-
|
|
42478
|
-
|
|
42575
|
+
pricevalue = _useState4[0],
|
|
42576
|
+
setpricevalue = _useState4[1];
|
|
42577
|
+
var _useState5 = useState([]),
|
|
42578
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
42579
|
+
imagesarray = _useState6[0],
|
|
42580
|
+
setimagesarray = _useState6[1];
|
|
42479
42581
|
var lang = props.actions.lang;
|
|
42480
42582
|
var langdetect = props.actions.langdetect;
|
|
42481
42583
|
var StatePagePropertiesContext = props.actions.StatePagePropertiesContext;
|
|
@@ -42782,10 +42884,23 @@ var BackgroundImageWithTopContent = function BackgroundImageWithTopContent(props
|
|
|
42782
42884
|
className: "".concat(langdetect == 'en' ? 'text-left' : 'text-right') + ' col-lg-3 col-md-12 col-sm-12 mb-sm-3 '
|
|
42783
42885
|
}, /*#__PURE__*/React.createElement("label", {
|
|
42784
42886
|
className: "".concat(sectionstyles.input_label_name) + ' mb-3 '
|
|
42785
|
-
}, langdetect == 'en' ? 'Price' : 'السعر'), /*#__PURE__*/React.createElement("div",
|
|
42786
|
-
|
|
42787
|
-
|
|
42788
|
-
|
|
42887
|
+
}, langdetect == 'en' ? 'Price' : 'السعر'), /*#__PURE__*/React.createElement("div", {
|
|
42888
|
+
"class": 'col-lg-12 pl-4 pr-4 mt-2 mb-2',
|
|
42889
|
+
style: {
|
|
42890
|
+
direction: 'ltr'
|
|
42891
|
+
}
|
|
42892
|
+
}, /*#__PURE__*/React.createElement(InputRange, {
|
|
42893
|
+
draggableTrack: true,
|
|
42894
|
+
formatLabel: function formatLabel(value) {
|
|
42895
|
+
return "".concat(value);
|
|
42896
|
+
},
|
|
42897
|
+
maxValue: 10000,
|
|
42898
|
+
minValue: 0,
|
|
42899
|
+
value: pricevalue,
|
|
42900
|
+
onChange: function onChange(value) {
|
|
42901
|
+
setpricevalue(_objectSpread$15({}, value));
|
|
42902
|
+
}
|
|
42903
|
+
})), /*#__PURE__*/React.createElement("div", null)))), sectionproperties.generalbtn_show == 'Show' && /*#__PURE__*/React.createElement("div", {
|
|
42789
42904
|
"class": "col-lg-12 p-0 allcentered mt-3"
|
|
42790
42905
|
}, /*#__PURE__*/React.createElement("button", {
|
|
42791
42906
|
"class": sectionstyles.btnstyles + ' allcentered '
|
|
@@ -60613,7 +60728,7 @@ var Simplecategorycardwithtextbelow = function Simplecategorycardwithtextbelow(p
|
|
|
60613
60728
|
};
|
|
60614
60729
|
return /*#__PURE__*/React.createElement("div", {
|
|
60615
60730
|
// class="row m-0 w-100"
|
|
60616
|
-
"class": props.sectiontypeprops2 == 'vertical' ? "".concat(card_cssstyles.productcard) + ' w-100 px-md-1 ' : " ".concat(card_cssstyles.productcard),
|
|
60731
|
+
"class": props.sectiontypeprops2 == 'vertical' ? sectionproperties.card_marginLeft != 0 ? "".concat(card_cssstyles.productcard) + ' w-100 px-md-1 ' : "".concat(card_cssstyles.productcard) + ' w-100 ' : " ".concat(card_cssstyles.productcard),
|
|
60617
60732
|
style: {
|
|
60618
60733
|
paddingLeft: langdetect == 'en' ? sectionproperties.card_marginLeft + 'px' : sectionproperties.card_marginRight + 'px',
|
|
60619
60734
|
paddingRight: langdetect == 'en' ? sectionproperties.card_marginRight + 'px' : sectionproperties.card_marginLeft + 'px'
|
|
@@ -60621,6 +60736,7 @@ var Simplecategorycardwithtextbelow = function Simplecategorycardwithtextbelow(p
|
|
|
60621
60736
|
}, sectionproperties.length != 0 && /*#__PURE__*/React.createElement("div", {
|
|
60622
60737
|
"class": sectionproperties.paddingLeft != 0 && sectionproperties.paddingRight != 0 && sectionproperties.paddingTop != 0 && sectionproperties.paddingBottom != 0 ? card_cssstyles.cardcontainer + ' w-100 p-sm-3 ' : card_cssstyles.cardcontainer + ' w-100 ',
|
|
60623
60738
|
onClick: function onClick() {
|
|
60739
|
+
// alert(item.skiplayeronclick);
|
|
60624
60740
|
cardonclickfunctionContext(sectionproperties === null || sectionproperties === void 0 ? void 0 : sectionproperties.onClickRoute, item.productid, props.fetchingtypeprops, item.collectionid, item.skiplayeronclick);
|
|
60625
60741
|
// cardonclickfunctionContext(sectionproperties?.onClickRoute, item.productid, props.fetchingtypeprops, item.collectionid);
|
|
60626
60742
|
}
|