tabexseriescomponents 0.0.324 → 0.0.326
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 +227 -109
- package/dist/index.esm.js +227 -109
- package/dist/index.umd.js +228 -112
- 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,
|
|
@@ -740,6 +775,8 @@ var Login = function Login(props) {
|
|
|
740
775
|
};
|
|
741
776
|
var LoginContent = function LoginContent() {
|
|
742
777
|
return /*#__PURE__*/React.createElement("div", {
|
|
778
|
+
"class": "col-lg-12 p-0"
|
|
779
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
743
780
|
"class": "row m-0 w-100"
|
|
744
781
|
}, sectionproperties.length != 0 && /*#__PURE__*/React.createElement("div", {
|
|
745
782
|
className: 'row m-0 w-100 pl-5 pr-5 d-flex align-items-center justify-content-center pl-md-3 pr-md-3 p-sm-0'
|
|
@@ -764,7 +801,7 @@ var Login = function Login(props) {
|
|
|
764
801
|
}, /*#__PURE__*/React.createElement("div", {
|
|
765
802
|
className: " row m-0 w-100 "
|
|
766
803
|
}, /*#__PURE__*/React.createElement("div", {
|
|
767
|
-
className: sectionproperties.cardstyletype == 'Style 1' ? "".concat(loginstyles$1.leftcontainer) + ' col-lg-6 col-md-12 col-sm-12 pt-4 pb-4 d-flex align-items-stretch p-0 ' :
|
|
804
|
+
className: sectionproperties.cardstyletype == 'Style 1' ? "".concat(loginstyles$1.leftcontainer) + ' col-lg-6 col-md-12 col-sm-12 pt-4 pb-4 d-flex align-items-stretch p-0 ' : ' col-lg-6 mx-auto col-md-12 col-sm-12 pt-4 pb-4 d-flex align-items-stretch p-0 ',
|
|
768
805
|
style: {
|
|
769
806
|
background: sectionproperties.formLeftbgColor,
|
|
770
807
|
borderTopRightRadius: langdetect == 'en' ? sectionproperties.formLeft_bordertoprightradius + 'px' : sectionproperties.formLeft_bordertopleftradius + 'px',
|
|
@@ -792,7 +829,7 @@ var Login = function Login(props) {
|
|
|
792
829
|
setpayloadobj(_objectSpread$2f({}, temppayloadobj));
|
|
793
830
|
},
|
|
794
831
|
style: {
|
|
795
|
-
background:
|
|
832
|
+
background: sectionproperties.input_bgcolor
|
|
796
833
|
}
|
|
797
834
|
})), /*#__PURE__*/React.createElement("div", {
|
|
798
835
|
className: "col-lg-12 col-md-12 col-sm-12 p-sm-0"
|
|
@@ -816,9 +853,9 @@ var Login = function Login(props) {
|
|
|
816
853
|
setpayloadobj(_objectSpread$2f({}, temppayloadobj));
|
|
817
854
|
},
|
|
818
855
|
style: {
|
|
819
|
-
background:
|
|
856
|
+
background: sectionproperties.input_bgcolor
|
|
820
857
|
}
|
|
821
|
-
})), /*#__PURE__*/React.createElement("div", {
|
|
858
|
+
})), sectionproperties.showforgetpassword == 'Show' && /*#__PURE__*/React.createElement("div", {
|
|
822
859
|
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
860
|
onClick: function onClick() {
|
|
824
861
|
setforgetpasswordmodal(true);
|
|
@@ -895,13 +932,14 @@ var Login = function Login(props) {
|
|
|
895
932
|
type: "hidden",
|
|
896
933
|
name: "password",
|
|
897
934
|
value: payloadobj.password
|
|
898
|
-
}))));
|
|
935
|
+
})))));
|
|
899
936
|
};
|
|
900
937
|
return /*#__PURE__*/React.createElement("div", {
|
|
901
938
|
className: "col-lg-12 d-flex align-items-center justify-content-center pt-md-3 pb-5",
|
|
902
939
|
style: {
|
|
903
940
|
background: sectionproperties.backgroundColor,
|
|
904
|
-
marginBottom: sectionproperties.marginBottom + 'px'
|
|
941
|
+
marginBottom: sectionproperties.marginBottom + 'px',
|
|
942
|
+
height: sectionproperties.height != null ? sectionproperties.height + 'vh' : 'auto'
|
|
905
943
|
}
|
|
906
944
|
}, /*#__PURE__*/React.createElement("div", {
|
|
907
945
|
"class": "row ml-0 mr-0 w-100 d-flex d-md-none",
|
|
@@ -969,7 +1007,7 @@ var Login = function Login(props) {
|
|
|
969
1007
|
},
|
|
970
1008
|
disabled: forgetpasswordstage == 'verify' ? true : false,
|
|
971
1009
|
style: {
|
|
972
|
-
background:
|
|
1010
|
+
background: sectionproperties.input_bgcolor
|
|
973
1011
|
}
|
|
974
1012
|
})), forgetpasswordstage == 'verify' && /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
|
975
1013
|
className: "col-lg-12 col-md-12 col-sm-12 mb-3 mt-3 p-sm-0"
|
|
@@ -985,7 +1023,7 @@ var Login = function Login(props) {
|
|
|
985
1023
|
setforgotpasswordpayload(_objectSpread$2f({}, temppayloadobj));
|
|
986
1024
|
},
|
|
987
1025
|
style: {
|
|
988
|
-
background:
|
|
1026
|
+
background: sectionproperties.input_bgcolor
|
|
989
1027
|
}
|
|
990
1028
|
})), /*#__PURE__*/React.createElement("div", {
|
|
991
1029
|
className: "col-lg-12 col-md-12 col-sm-12 mb-3 p-sm-0"
|
|
@@ -1001,7 +1039,7 @@ var Login = function Login(props) {
|
|
|
1001
1039
|
setforgotpasswordpayload(_objectSpread$2f({}, temppayloadobj));
|
|
1002
1040
|
},
|
|
1003
1041
|
style: {
|
|
1004
|
-
background:
|
|
1042
|
+
background: sectionproperties.input_bgcolor
|
|
1005
1043
|
}
|
|
1006
1044
|
})), /*#__PURE__*/React.createElement("div", {
|
|
1007
1045
|
className: "col-lg-12 col-md-12 col-sm-12 mb-2 p-sm-0"
|
|
@@ -1017,7 +1055,7 @@ var Login = function Login(props) {
|
|
|
1017
1055
|
setforgotpasswordpayload(_objectSpread$2f({}, temppayloadobj));
|
|
1018
1056
|
},
|
|
1019
1057
|
style: {
|
|
1020
|
-
background:
|
|
1058
|
+
background: sectionproperties.input_bgcolor
|
|
1021
1059
|
}
|
|
1022
1060
|
}))))), /*#__PURE__*/React.createElement(Modal.Footer, null, /*#__PURE__*/React.createElement("div", {
|
|
1023
1061
|
className: "col-lg-12 col-md-12 col-sm-12 d-flex align-items-center justify-content-center mb-3 "
|
|
@@ -1073,24 +1111,8 @@ styleInject(css_248z$L);
|
|
|
1073
1111
|
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
1112
|
styleInject(css_248z$K);
|
|
1075
1113
|
|
|
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-"};
|
|
1114
|
+
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}";
|
|
1115
|
+
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
1116
|
styleInject(css_248z$J);
|
|
1095
1117
|
|
|
1096
1118
|
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 +1133,18 @@ var defaultstyles = {
|
|
|
1111
1133
|
});
|
|
1112
1134
|
},
|
|
1113
1135
|
control: function control() {
|
|
1114
|
-
|
|
1136
|
+
var _ref;
|
|
1137
|
+
return _ref = {
|
|
1115
1138
|
borderBottom: '1px solid #ccc',
|
|
1116
1139
|
backgroundColor: 'white',
|
|
1117
1140
|
display: 'flex',
|
|
1118
1141
|
cursor: 'pointer',
|
|
1119
1142
|
padding: 0,
|
|
1120
|
-
transition: '.3s'
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
};
|
|
1143
|
+
transition: '.3s'
|
|
1144
|
+
}, _defineProperty(_ref, "backgroundColor", 'transparent'), _defineProperty(_ref, '&:hover', {
|
|
1145
|
+
// boxShadow: '0px 9px 20px rgba(75, 72, 72, 0.3)',
|
|
1146
|
+
// borderRadius: '10px',
|
|
1147
|
+
}), _ref;
|
|
1126
1148
|
},
|
|
1127
1149
|
dropdownIndicator: function dropdownIndicator(provided) {
|
|
1128
1150
|
return _objectSpread$2e(_objectSpread$2e({}, provided), {}, {
|
|
@@ -7828,7 +7850,7 @@ var Viewcart = function Viewcart(props) {
|
|
|
7828
7850
|
fontSize: sectionproperties.noprod_fontSize + 'px'
|
|
7829
7851
|
}
|
|
7830
7852
|
}, 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 '
|
|
7853
|
+
className: langdetect == 'en' ? ' col-lg-3 pr-0 px-sm-0 mb-4 ' : ' col-lg-3 pl-0 px-sm-0 mb-4'
|
|
7832
7854
|
}, Summary()))))));
|
|
7833
7855
|
};
|
|
7834
7856
|
|
|
@@ -9072,7 +9094,7 @@ var Select$1 = /*#__PURE__*/React.lazy(function () {
|
|
|
9072
9094
|
return import('react-select');
|
|
9073
9095
|
});
|
|
9074
9096
|
var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
9075
|
-
var _fetchAuthorizationQu, _fetchAuthorizationQu2, _fetchAuthorizationQu3, _fetchAuthorizationQu4, _fetchAuthorizationQu5, _fetchAuthorizationQu6, _css, _authdetailsContext$c, _authdetailsContext$c2;
|
|
9097
|
+
var _fetchAuthorizationQu, _fetchAuthorizationQu2, _fetchAuthorizationQu3, _fetchAuthorizationQu4, _fetchAuthorizationQu5, _fetchAuthorizationQu6, _css, _authdetailsContext$i2, _authdetailsContext$c, _authdetailsContext$c2;
|
|
9076
9098
|
var lang = props.actions.lang;
|
|
9077
9099
|
var langdetect = props.actions.langdetect;
|
|
9078
9100
|
props.actions.routingcountext;
|
|
@@ -9140,6 +9162,18 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9140
9162
|
_useState14 = _slicedToArray(_useState13, 2),
|
|
9141
9163
|
payloadobj = _useState14[0],
|
|
9142
9164
|
setpayloadobj = _useState14[1];
|
|
9165
|
+
var _useState15 = useState(false),
|
|
9166
|
+
_useState16 = _slicedToArray(_useState15, 2);
|
|
9167
|
+
_useState16[0];
|
|
9168
|
+
_useState16[1];
|
|
9169
|
+
var _useState17 = useState(false),
|
|
9170
|
+
_useState18 = _slicedToArray(_useState17, 2);
|
|
9171
|
+
_useState18[0];
|
|
9172
|
+
_useState18[1];
|
|
9173
|
+
var _useState19 = useState(false),
|
|
9174
|
+
_useState20 = _slicedToArray(_useState19, 2),
|
|
9175
|
+
waitingpage = _useState20[0],
|
|
9176
|
+
setwaitingpage = _useState20[1];
|
|
9143
9177
|
useEffect(function () {
|
|
9144
9178
|
if (fetchAuthorizationQueryContext.isSuccess) {
|
|
9145
9179
|
var _fetchAuthorizationQu7, _fetchAuthorizationQu8, _fetchAuthorizationQu9, _fetchAuthorizationQu10, _fetchAuthorizationQu11, _fetchAuthorizationQu12;
|
|
@@ -9197,10 +9231,15 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9197
9231
|
var isshippingaddresscompleted = false;
|
|
9198
9232
|
var passwordvalidation = false;
|
|
9199
9233
|
if (authdetailsContext.loggedin == false) {
|
|
9200
|
-
|
|
9201
|
-
|
|
9202
|
-
|
|
9234
|
+
var _authdetailsContext$i;
|
|
9235
|
+
if ((authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.ispasswordrequired_signup) == 1) {
|
|
9236
|
+
if (payloadobj.password.length != 0) {
|
|
9237
|
+
if (payloadobj.password == payloadobj.password2) {
|
|
9238
|
+
passwordvalidation = true;
|
|
9239
|
+
}
|
|
9203
9240
|
}
|
|
9241
|
+
} else {
|
|
9242
|
+
passwordvalidation = true;
|
|
9204
9243
|
}
|
|
9205
9244
|
} else if (authdetailsContext.loggedin == true) {
|
|
9206
9245
|
if (payloadobj.password.length != 0) {
|
|
@@ -9262,6 +9301,9 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9262
9301
|
}
|
|
9263
9302
|
temppayloadobj.addedsourcetype = 'Webapp';
|
|
9264
9303
|
temppayloadobj.instapikey = instapikey;
|
|
9304
|
+
if (sectionproperties.redirectsaftersignup != 'Home') {
|
|
9305
|
+
setwaitingpage(true);
|
|
9306
|
+
}
|
|
9265
9307
|
CustomerSignUpMutationContext.mutate(temppayloadobj);
|
|
9266
9308
|
}
|
|
9267
9309
|
};
|
|
@@ -9379,7 +9421,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9379
9421
|
payloadobjchange('name', event.target.value);
|
|
9380
9422
|
},
|
|
9381
9423
|
style: {
|
|
9382
|
-
background:
|
|
9424
|
+
background: sectionproperties.input_bgcolor
|
|
9383
9425
|
}
|
|
9384
9426
|
})), /*#__PURE__*/React.createElement("div", {
|
|
9385
9427
|
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 +9437,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9395
9437
|
payloadobjchange('email', event.target.value);
|
|
9396
9438
|
},
|
|
9397
9439
|
style: {
|
|
9398
|
-
background:
|
|
9440
|
+
background: sectionproperties.input_bgcolor
|
|
9399
9441
|
}
|
|
9400
9442
|
})), /*#__PURE__*/React.createElement("div", {
|
|
9401
9443
|
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 +9460,8 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9418
9460
|
},
|
|
9419
9461
|
|
|
9420
9462
|
style: {
|
|
9421
|
-
direction: 'ltr'
|
|
9463
|
+
direction: 'ltr',
|
|
9464
|
+
color: sectionproperties.inputfieldcolor
|
|
9422
9465
|
}
|
|
9423
9466
|
})));
|
|
9424
9467
|
};
|
|
@@ -9597,7 +9640,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9597
9640
|
},
|
|
9598
9641
|
style: {
|
|
9599
9642
|
resize: 'none',
|
|
9600
|
-
background:
|
|
9643
|
+
background: sectionproperties.input_bgcolor
|
|
9601
9644
|
}
|
|
9602
9645
|
}), /*#__PURE__*/React.createElement("span", {
|
|
9603
9646
|
className: loginstyles.login_input_focus
|
|
@@ -9612,7 +9655,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9612
9655
|
className: "".concat(formstyles.input_label_name) + ' d-flex align-items-start '
|
|
9613
9656
|
}, lang.password), /*#__PURE__*/React.createElement("input", {
|
|
9614
9657
|
className: "".concat(loginstyles.form_control, " ").concat(formstyles.form_control),
|
|
9615
|
-
type:
|
|
9658
|
+
type: 'password',
|
|
9616
9659
|
autocomplete: "new-password",
|
|
9617
9660
|
textplaceholder: "",
|
|
9618
9661
|
value: payloadobj.password,
|
|
@@ -9726,19 +9769,50 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9726
9769
|
})));
|
|
9727
9770
|
})));
|
|
9728
9771
|
};
|
|
9772
|
+
var SignUpButtonContent = function SignUpButtonContent() {
|
|
9773
|
+
return /*#__PURE__*/React.createElement("button", {
|
|
9774
|
+
className: "".concat(formstyles.signupbtn) + ' d-flex align-items-center justify-content-center ',
|
|
9775
|
+
disabled: CustomerSignUpMutationContext.isLoading ? true : false,
|
|
9776
|
+
onClick: function onClick() {
|
|
9777
|
+
if (verifypayload() == true) {
|
|
9778
|
+
if (customervalidateemail == 1) {
|
|
9779
|
+
setvalidateemailmodal(true);
|
|
9780
|
+
} else {
|
|
9781
|
+
signupbuttonfunc();
|
|
9782
|
+
}
|
|
9783
|
+
}
|
|
9784
|
+
}
|
|
9785
|
+
}, CustomerSignUpMutationContext.isLoading && /*#__PURE__*/React.createElement(CircularProgress, {
|
|
9786
|
+
color: "#fff",
|
|
9787
|
+
width: "20px",
|
|
9788
|
+
height: "20px",
|
|
9789
|
+
duration: "1s"
|
|
9790
|
+
}), !CustomerSignUpMutationContext.isLoading && /*#__PURE__*/React.createElement(React.Fragment, null, authdetailsContext.loggedin != true && /*#__PURE__*/React.createElement("span", {
|
|
9791
|
+
style: {
|
|
9792
|
+
letterSpacing: langdetect == 'en' ? '1px' : ''
|
|
9793
|
+
}
|
|
9794
|
+
}, langdetect == 'en' ? sectionproperties.signupbtn_contenten : sectionproperties.signupbtn_contentar), authdetailsContext.loggedin == true && /*#__PURE__*/React.createElement("span", {
|
|
9795
|
+
style: {
|
|
9796
|
+
letterSpacing: langdetect == 'en' ? '1px' : ''
|
|
9797
|
+
}
|
|
9798
|
+
}, lang.update)));
|
|
9799
|
+
};
|
|
9729
9800
|
return /*#__PURE__*/React.createElement("div", {
|
|
9730
|
-
className: "row m-0 w-100 d-flex justify-content-center"
|
|
9801
|
+
className: "row m-0 w-100 d-flex justify-content-center",
|
|
9802
|
+
style: {
|
|
9803
|
+
// heigh: '100%',
|
|
9804
|
+
}
|
|
9731
9805
|
}, !dataloaded && /*#__PURE__*/React.createElement(CircularProgress, {
|
|
9732
9806
|
color: "black",
|
|
9733
9807
|
width: "20px",
|
|
9734
9808
|
height: "20px",
|
|
9735
9809
|
duration: "1s"
|
|
9736
|
-
}), dataloaded && props.srcfromprops == 'signup' && /*#__PURE__*/React.createElement("div", {
|
|
9810
|
+
}), dataloaded && props.srcfromprops == 'signup' && waitingpage == false && /*#__PURE__*/React.createElement("div", {
|
|
9737
9811
|
className: "col-lg-12 p-0",
|
|
9738
9812
|
style: {
|
|
9739
|
-
background:
|
|
9813
|
+
background: sectionproperties.formLeftbgColor
|
|
9740
9814
|
}
|
|
9741
|
-
}, PersonalInformation(), Address(), Otherinformation(), Password()), dataloaded && props.srcfromprops == 'accountinfo' && /*#__PURE__*/React.createElement("div", {
|
|
9815
|
+
}, 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
9816
|
className: "col-lg-12 p-0"
|
|
9743
9817
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9744
9818
|
className: "row ml-0 mr-0 w-100"
|
|
@@ -9802,7 +9876,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9802
9876
|
borderBottomLeftRadius: sectionproperties.borderBottomLeftRadius + 'px',
|
|
9803
9877
|
borderBottomRightRadius: sectionproperties.borderBottomRightRadius + 'px'
|
|
9804
9878
|
},
|
|
9805
|
-
className: "p-2"
|
|
9879
|
+
className: "p-2 w-100"
|
|
9806
9880
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9807
9881
|
className: "row ml-0 mr-0"
|
|
9808
9882
|
}, /*#__PURE__*/React.createElement("div", {
|
|
@@ -9824,7 +9898,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9824
9898
|
display: sectionproperties.hidecountrystatecity == 'Show' && sectionproperties.hideaddress == 'Show' ? 'flex' : 'none'
|
|
9825
9899
|
}
|
|
9826
9900
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9827
|
-
className: 'p-2',
|
|
9901
|
+
className: 'p-2 w-100',
|
|
9828
9902
|
style: {
|
|
9829
9903
|
background: sectionproperties.backgroundColor,
|
|
9830
9904
|
borderTopLeftRadius: sectionproperties.borderTopLeftRadius + 'px',
|
|
@@ -9850,7 +9924,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9850
9924
|
}))), Address())), /*#__PURE__*/React.createElement("div", {
|
|
9851
9925
|
className: "col-lg-12 mb-3 p-0"
|
|
9852
9926
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9853
|
-
className: 'p-2',
|
|
9927
|
+
className: 'p-2 w-100',
|
|
9854
9928
|
style: {
|
|
9855
9929
|
background: sectionproperties.backgroundColor,
|
|
9856
9930
|
borderTopLeftRadius: sectionproperties.borderTopLeftRadius + 'px',
|
|
@@ -9885,7 +9959,7 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9885
9959
|
borderBottomLeftRadius: sectionproperties.borderBottomLeftRadius + 'px',
|
|
9886
9960
|
borderBottomRightRadius: sectionproperties.borderBottomRightRadius + 'px'
|
|
9887
9961
|
},
|
|
9888
|
-
className: "p-2"
|
|
9962
|
+
className: "p-2 w-100"
|
|
9889
9963
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9890
9964
|
className: "row ml-0 mr-0"
|
|
9891
9965
|
}, /*#__PURE__*/React.createElement("div", {
|
|
@@ -9917,34 +9991,9 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9917
9991
|
onClick: function onClick() {
|
|
9918
9992
|
window.open(window.location.origin + '/policies', '_blank');
|
|
9919
9993
|
}
|
|
9920
|
-
}, langdetect == 'en' ? 'Terms & Conditions' : 'الشروط و الاحكام'))), /*#__PURE__*/React.createElement("div", {
|
|
9994
|
+
}, langdetect == 'en' ? 'Terms & Conditions' : 'الشروط و الاحكام'))), waitingpage == false && /*#__PURE__*/React.createElement("div", {
|
|
9921
9995
|
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", {
|
|
9996
|
+
}, authdetailsContext.loggedin == false && SignUpButtonContent(), authdetailsContext.loggedin == true && sectionproperties.showupdatebtn == 'Show' && SignUpButtonContent()), props.srcfromprops == 'signup' && waitingpage == false && /*#__PURE__*/React.createElement("div", {
|
|
9948
9997
|
className: "row m-0 w-100"
|
|
9949
9998
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9950
9999
|
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 +10017,25 @@ var CustomerInformationForm = function CustomerInformationForm(props) {
|
|
|
9968
10017
|
className: "ml-1 mr-1"
|
|
9969
10018
|
}, /*#__PURE__*/React.createElement(GoogleLoginButton, {
|
|
9970
10019
|
actions: actions
|
|
9971
|
-
})))), /*#__PURE__*/React.createElement(
|
|
10020
|
+
})))), waitingpage == true && /*#__PURE__*/React.createElement("div", {
|
|
10021
|
+
"class": "col-lg-12 allcentered my-5"
|
|
10022
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
10023
|
+
"class": "row m-0 w-100"
|
|
10024
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
10025
|
+
"class": "col-lg-12 allcentered"
|
|
10026
|
+
}, /*#__PURE__*/React.createElement("p", {
|
|
10027
|
+
style: {
|
|
10028
|
+
color: sectionproperties.waitingapprovalcolor,
|
|
10029
|
+
fontSize: sectionproperties.waitingapprovalfontsize + 'px'
|
|
10030
|
+
}
|
|
10031
|
+
}, langdetect == 'en' ? sectionproperties.waitingapprovaltest_en : sectionproperties.waitingapprovaltest_ar)), /*#__PURE__*/React.createElement("div", {
|
|
10032
|
+
"class": "col-lg-12 allcentered"
|
|
10033
|
+
}, /*#__PURE__*/React.createElement("p", {
|
|
10034
|
+
style: {
|
|
10035
|
+
color: sectionproperties.waitingapprovalcolor2,
|
|
10036
|
+
fontSize: sectionproperties.waitingapprovalfontsize2 + 'px'
|
|
10037
|
+
}
|
|
10038
|
+
}, langdetect == 'en' ? sectionproperties.waitingapprovaltest_en2 : sectionproperties.waitingapprovaltest_ar2)))), /*#__PURE__*/React.createElement(Modal, {
|
|
9972
10039
|
show: validateemailmodal,
|
|
9973
10040
|
onHide: function onHide() {
|
|
9974
10041
|
return setvalidateemailmodal(false);
|
|
@@ -10204,6 +10271,11 @@ var Signup = function Signup(props) {
|
|
|
10204
10271
|
};
|
|
10205
10272
|
var SignupContent = function SignupContent() {
|
|
10206
10273
|
return /*#__PURE__*/React.createElement("div", {
|
|
10274
|
+
"class": "col-lg-12 p-0",
|
|
10275
|
+
style: {
|
|
10276
|
+
height: '100%'
|
|
10277
|
+
}
|
|
10278
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
10207
10279
|
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
10280
|
}, /*#__PURE__*/React.createElement("div", {
|
|
10209
10281
|
className: "col-lg-12 col-md-12 col-sm-12 d-flex align-items-center justify-content-center mt-3",
|
|
@@ -10233,10 +10305,7 @@ var Signup = function Signup(props) {
|
|
|
10233
10305
|
className: 'col-lg-12 col-md-12 col-sm-12 pt-4 pb-4 d-flex align-items-stretch',
|
|
10234
10306
|
style: {
|
|
10235
10307
|
background: sectionproperties.formLeftbgColor,
|
|
10236
|
-
|
|
10237
|
-
borderTopLeftRadius: sectionproperties.formLeft_bordertopleftradius + 'px',
|
|
10238
|
-
borderBottomRightRadius: sectionproperties.formLeft_borderbottomrightadius + 'px',
|
|
10239
|
-
borderBottomLeftRadius: sectionproperties.formLeft_borderbottomleftadius + 'px'
|
|
10308
|
+
borderRadius: '10px'
|
|
10240
10309
|
}
|
|
10241
10310
|
}, !SocialLoginMutationContext.isLoading && /*#__PURE__*/React.createElement("div", {
|
|
10242
10311
|
"class": "row m-0 w-100"
|
|
@@ -10256,23 +10325,26 @@ var Signup = function Signup(props) {
|
|
|
10256
10325
|
width: "40px",
|
|
10257
10326
|
height: "40px",
|
|
10258
10327
|
duration: "1s"
|
|
10259
|
-
})))))));
|
|
10328
|
+
}))))))));
|
|
10260
10329
|
};
|
|
10261
10330
|
return /*#__PURE__*/React.createElement("div", {
|
|
10262
10331
|
className: "col-lg-12 d-flex align-items-center justify-content-center pt-md-3 pb-5",
|
|
10263
10332
|
style: {
|
|
10264
10333
|
background: sectionproperties.backgroundColor,
|
|
10265
|
-
marginBottom: sectionproperties.marginBottom + 'px'
|
|
10334
|
+
marginBottom: sectionproperties.marginBottom + 'px',
|
|
10335
|
+
minHeight: sectionproperties.height != null ? sectionproperties.height + 'vh' : 'auto'
|
|
10266
10336
|
}
|
|
10267
10337
|
}, /*#__PURE__*/React.createElement("div", {
|
|
10268
10338
|
"class": "row ml-0 mr-0 w-100 d-flex d-md-none",
|
|
10269
10339
|
style: {
|
|
10270
|
-
marginTop: sectionproperties.marginTop + 'px'
|
|
10340
|
+
marginTop: sectionproperties.marginTop + 'px',
|
|
10341
|
+
height: '100%'
|
|
10271
10342
|
}
|
|
10272
10343
|
}, SignupContent()), /*#__PURE__*/React.createElement("div", {
|
|
10273
10344
|
"class": "row ml-0 mr-0 w-100 d-none d-md-flex",
|
|
10274
10345
|
style: {
|
|
10275
|
-
marginTop: sectionproperties.marginTopResp + 'px'
|
|
10346
|
+
marginTop: sectionproperties.marginTopResp + 'px',
|
|
10347
|
+
height: '100%'
|
|
10276
10348
|
}
|
|
10277
10349
|
}, SignupContent()));
|
|
10278
10350
|
};
|
|
@@ -15847,7 +15919,7 @@ var DownloadApp = function DownloadApp(props) {
|
|
|
15847
15919
|
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
15920
|
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
15921
|
var Gotoheader = function Gotoheader(props) {
|
|
15850
|
-
var _logoarrayofobjects$, _logoarrayofobjects$2, _fetchcustomercartQue4, _fetchcustomercartQue5, _fetchcustomercartQue6, _fetchcustomercartQue7, _fetchcustomercartQue8, _fetchcustomercartQue9;
|
|
15922
|
+
var _logoarrayofobjects$, _logoarrayofobjects$2, _fetchcustomercartQue4, _fetchcustomercartQue5, _fetchcustomercartQue6, _fetchcustomercartQue7, _fetchcustomercartQue8, _fetchcustomercartQue9, _logoarrayofobjects$3, _logoarrayofobjects$4;
|
|
15851
15923
|
var _useState = useState(''),
|
|
15852
15924
|
_useState2 = _slicedToArray(_useState, 2),
|
|
15853
15925
|
sectionproperties = _useState2[0],
|
|
@@ -16119,19 +16191,18 @@ var Gotoheader = function Gotoheader(props) {
|
|
|
16119
16191
|
})
|
|
16120
16192
|
};
|
|
16121
16193
|
return /*#__PURE__*/React.createElement("div", {
|
|
16122
|
-
|
|
16123
|
-
style:
|
|
16124
|
-
position: 'relative',
|
|
16125
|
-
zIndex: 1000
|
|
16126
|
-
}
|
|
16194
|
+
className: "".concat(headerstyles$g.header_container) + ' row m-0 w-100 d-flex justify-content-center '
|
|
16195
|
+
// class={`${headerstyles.header_container}` + ' row m-0 w-100 d-flex justify-content-center '} style={{ position: 'relative', zIndex: 1000 }}
|
|
16127
16196
|
}, /*#__PURE__*/React.createElement("div", {
|
|
16197
|
+
// className={' row m-0 d-md-none '}
|
|
16128
16198
|
"class": "row m-0 d-md-none",
|
|
16129
16199
|
style: {
|
|
16130
16200
|
position: sectionproperties.headerstyles_position,
|
|
16131
16201
|
marginTop: sectionproperties.header_marginTop + 'px',
|
|
16132
16202
|
marginBottom: sectionproperties.header_marginBottom + 'px',
|
|
16133
16203
|
width: '100vw',
|
|
16134
|
-
top: 0
|
|
16204
|
+
top: 0,
|
|
16205
|
+
display: !authdetailsContext.loggedin && sectionproperties.hideheaderwhenloggedin == 'Hide' ? 'none' : 'flex'
|
|
16135
16206
|
}
|
|
16136
16207
|
}, sectionproperties.showdownloadapp == 'Show' && /*#__PURE__*/React.createElement(DownloadApp, {
|
|
16137
16208
|
sectionpropertiesprops: sectionproperties,
|
|
@@ -16498,10 +16569,36 @@ var Gotoheader = function Gotoheader(props) {
|
|
|
16498
16569
|
paddingRightprops: '45px',
|
|
16499
16570
|
subheadercontentpositionprops: 'start'
|
|
16500
16571
|
}
|
|
16501
|
-
}))), /*#__PURE__*/React.createElement(
|
|
16572
|
+
}))), !authdetailsContext.loggedin && sectionproperties.hideheaderwhenloggedin == 'Hide' && /*#__PURE__*/React.createElement("div", {
|
|
16573
|
+
className: ' row m-0 ',
|
|
16574
|
+
style: {
|
|
16575
|
+
position: sectionproperties.headerstyles_position,
|
|
16576
|
+
marginTop: sectionproperties.header_marginTop + 'px',
|
|
16577
|
+
marginBottom: sectionproperties.header_marginBottom + 'px',
|
|
16578
|
+
width: '100vw',
|
|
16579
|
+
top: 0
|
|
16580
|
+
}
|
|
16581
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
16582
|
+
"class": "".concat(header_cssstyles.top_bar) + ' row m-0 w-100 d-flex align-items-center '
|
|
16583
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
16584
|
+
"class": "col-lg-12 allcentered p-0"
|
|
16585
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
16586
|
+
"class": "".concat(header_cssstyles.header_logo)
|
|
16587
|
+
}, /*#__PURE__*/React.createElement(Imagekitimagecomp, {
|
|
16588
|
+
urlEndpoint: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimageendpoint,
|
|
16589
|
+
publicKey: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimagepublickey,
|
|
16590
|
+
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,
|
|
16591
|
+
style: {
|
|
16592
|
+
width: '100%',
|
|
16593
|
+
height: '100%',
|
|
16594
|
+
objectFit: 'contain'
|
|
16595
|
+
}
|
|
16596
|
+
}))))), /*#__PURE__*/React.createElement("div", {
|
|
16597
|
+
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 '
|
|
16598
|
+
}, /*#__PURE__*/React.createElement(Headerresponsive, {
|
|
16502
16599
|
sectionpropertiesprops: sectionproperties,
|
|
16503
16600
|
actions: actions
|
|
16504
|
-
}));
|
|
16601
|
+
})));
|
|
16505
16602
|
};
|
|
16506
16603
|
|
|
16507
16604
|
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 +26124,7 @@ var StylishHeader = function StylishHeader(props) {
|
|
|
26027
26124
|
OpenCloseCartSlider = _useState8[0],
|
|
26028
26125
|
setOpenCloseCartSlider = _useState8[1];
|
|
26029
26126
|
return /*#__PURE__*/React.createElement("div", {
|
|
26030
|
-
className: ' row m-0 w-100 d-flex justify-content-center ',
|
|
26127
|
+
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
26128
|
style: {
|
|
26032
26129
|
width: '100vw'
|
|
26033
26130
|
}
|
|
@@ -35958,7 +36055,7 @@ var Simplefooter = function Simplefooter(props) {
|
|
|
35958
36055
|
})
|
|
35959
36056
|
};
|
|
35960
36057
|
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 '
|
|
36058
|
+
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
36059
|
}, /*#__PURE__*/React.createElement("div", {
|
|
35963
36060
|
className: "col-lg-4 col-md-12 col-sm-12 d-flex align-items-center justify-content-start p-sm-0"
|
|
35964
36061
|
}, /*#__PURE__*/React.createElement("div", {
|
|
@@ -42472,10 +42569,17 @@ var BackgroundImageWithTopContent = function BackgroundImageWithTopContent(props
|
|
|
42472
42569
|
_useState2 = _slicedToArray(_useState, 2),
|
|
42473
42570
|
sectionproperties = _useState2[0],
|
|
42474
42571
|
setsectionproperties = _useState2[1];
|
|
42475
|
-
var _useState3 = useState(
|
|
42572
|
+
var _useState3 = useState({
|
|
42573
|
+
min: 0,
|
|
42574
|
+
max: 10000
|
|
42575
|
+
}),
|
|
42476
42576
|
_useState4 = _slicedToArray(_useState3, 2),
|
|
42477
|
-
|
|
42478
|
-
|
|
42577
|
+
pricevalue = _useState4[0],
|
|
42578
|
+
setpricevalue = _useState4[1];
|
|
42579
|
+
var _useState5 = useState([]),
|
|
42580
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
42581
|
+
imagesarray = _useState6[0],
|
|
42582
|
+
setimagesarray = _useState6[1];
|
|
42479
42583
|
var lang = props.actions.lang;
|
|
42480
42584
|
var langdetect = props.actions.langdetect;
|
|
42481
42585
|
var StatePagePropertiesContext = props.actions.StatePagePropertiesContext;
|
|
@@ -42782,10 +42886,23 @@ var BackgroundImageWithTopContent = function BackgroundImageWithTopContent(props
|
|
|
42782
42886
|
className: "".concat(langdetect == 'en' ? 'text-left' : 'text-right') + ' col-lg-3 col-md-12 col-sm-12 mb-sm-3 '
|
|
42783
42887
|
}, /*#__PURE__*/React.createElement("label", {
|
|
42784
42888
|
className: "".concat(sectionstyles.input_label_name) + ' mb-3 '
|
|
42785
|
-
}, langdetect == 'en' ? 'Price' : 'السعر'), /*#__PURE__*/React.createElement("div",
|
|
42786
|
-
|
|
42787
|
-
|
|
42788
|
-
|
|
42889
|
+
}, langdetect == 'en' ? 'Price' : 'السعر'), /*#__PURE__*/React.createElement("div", {
|
|
42890
|
+
"class": 'col-lg-12 pl-4 pr-4 mt-2 mb-2',
|
|
42891
|
+
style: {
|
|
42892
|
+
direction: 'ltr'
|
|
42893
|
+
}
|
|
42894
|
+
}, /*#__PURE__*/React.createElement(InputRange, {
|
|
42895
|
+
draggableTrack: true,
|
|
42896
|
+
formatLabel: function formatLabel(value) {
|
|
42897
|
+
return "".concat(value);
|
|
42898
|
+
},
|
|
42899
|
+
maxValue: 10000,
|
|
42900
|
+
minValue: 0,
|
|
42901
|
+
value: pricevalue,
|
|
42902
|
+
onChange: function onChange(value) {
|
|
42903
|
+
setpricevalue(_objectSpread$15({}, value));
|
|
42904
|
+
}
|
|
42905
|
+
})), /*#__PURE__*/React.createElement("div", null)))), sectionproperties.generalbtn_show == 'Show' && /*#__PURE__*/React.createElement("div", {
|
|
42789
42906
|
"class": "col-lg-12 p-0 allcentered mt-3"
|
|
42790
42907
|
}, /*#__PURE__*/React.createElement("button", {
|
|
42791
42908
|
"class": sectionstyles.btnstyles + ' allcentered '
|
|
@@ -60613,7 +60730,7 @@ var Simplecategorycardwithtextbelow = function Simplecategorycardwithtextbelow(p
|
|
|
60613
60730
|
};
|
|
60614
60731
|
return /*#__PURE__*/React.createElement("div", {
|
|
60615
60732
|
// class="row m-0 w-100"
|
|
60616
|
-
"class": props.sectiontypeprops2 == 'vertical' ? "".concat(card_cssstyles.productcard) + ' w-100 px-md-1 ' : " ".concat(card_cssstyles.productcard),
|
|
60733
|
+
"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
60734
|
style: {
|
|
60618
60735
|
paddingLeft: langdetect == 'en' ? sectionproperties.card_marginLeft + 'px' : sectionproperties.card_marginRight + 'px',
|
|
60619
60736
|
paddingRight: langdetect == 'en' ? sectionproperties.card_marginRight + 'px' : sectionproperties.card_marginLeft + 'px'
|
|
@@ -60621,6 +60738,7 @@ var Simplecategorycardwithtextbelow = function Simplecategorycardwithtextbelow(p
|
|
|
60621
60738
|
}, sectionproperties.length != 0 && /*#__PURE__*/React.createElement("div", {
|
|
60622
60739
|
"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
60740
|
onClick: function onClick() {
|
|
60741
|
+
// alert(item.skiplayeronclick);
|
|
60624
60742
|
cardonclickfunctionContext(sectionproperties === null || sectionproperties === void 0 ? void 0 : sectionproperties.onClickRoute, item.productid, props.fetchingtypeprops, item.collectionid, item.skiplayeronclick);
|
|
60625
60743
|
// cardonclickfunctionContext(sectionproperties?.onClickRoute, item.productid, props.fetchingtypeprops, item.collectionid);
|
|
60626
60744
|
}
|