tabexseriescomponents 0.2.915 → 0.2.917
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 +286 -178
- package/dist/index.esm.js +286 -178
- package/dist/index.umd.js +286 -178
- package/package.json +1 -1
- package/yarn-error.log +0 -0
package/dist/index.cjs.js
CHANGED
|
@@ -22780,6 +22780,55 @@ var CardsSection = function CardsSection(props) {
|
|
|
22780
22780
|
}
|
|
22781
22781
|
return isloading;
|
|
22782
22782
|
};
|
|
22783
|
+
// const show_product_group_titles = () => {
|
|
22784
|
+
// var title_en = '';
|
|
22785
|
+
// var title_ar = '';
|
|
22786
|
+
// var description_en = '';
|
|
22787
|
+
// var description_ar = '';
|
|
22788
|
+
// var logo = '';
|
|
22789
|
+
// var type = '';
|
|
22790
|
+
// var id = '';
|
|
22791
|
+
// if (ProductFilterObjContext['collections'] != undefined && Array.isArray(ProductFilterObjContext['collections']) && ProductFilterObjContext['collections'][0] != undefined) {
|
|
22792
|
+
// id = ProductFilterObjContext['collections'][0];
|
|
22793
|
+
// }
|
|
22794
|
+
// if (id != null && id != '' && id != 'all') {
|
|
22795
|
+
// fetchCategoriesQueryContext?.data?.data?.categories?.map(function (catitem) {
|
|
22796
|
+
// if (catitem.categoryid == id) {
|
|
22797
|
+
// title_en = catitem.title_en;
|
|
22798
|
+
// title_ar = catitem.title_ar;
|
|
22799
|
+
// description_en = catitem.description_en;
|
|
22800
|
+
// description_ar = catitem.description_ar;
|
|
22801
|
+
// logo = catitem.categorylogo;
|
|
22802
|
+
// type = 'category';
|
|
22803
|
+
// }
|
|
22804
|
+
// if (title_en == '') {
|
|
22805
|
+
// catitem?.parentcolletions?.map(function (parentitem) {
|
|
22806
|
+
// if (parentitem.parentcollectionid == id) {
|
|
22807
|
+
// title_en = parentitem.title_en;
|
|
22808
|
+
// title_ar = parentitem.title_ar;
|
|
22809
|
+
// description_en = parentitem.description_en;
|
|
22810
|
+
// description_ar = parentitem.description_ar;
|
|
22811
|
+
// logo = parentitem.parentcollectionlogo;
|
|
22812
|
+
// type = 'parentcollection';
|
|
22813
|
+
// }
|
|
22814
|
+
// if (title_en == '') {
|
|
22815
|
+
// parentitem?.collections?.map(function (colitem) {
|
|
22816
|
+
// if (colitem.collectionid == id) {
|
|
22817
|
+
// title_en = colitem.title_en;
|
|
22818
|
+
// title_ar = colitem.title_ar;
|
|
22819
|
+
// description_en = colitem.description_en;
|
|
22820
|
+
// description_ar = colitem.description_ar;
|
|
22821
|
+
// logo = colitem.collectionlogo;
|
|
22822
|
+
// type = 'collection';
|
|
22823
|
+
// }
|
|
22824
|
+
// });
|
|
22825
|
+
// }
|
|
22826
|
+
// });
|
|
22827
|
+
// }
|
|
22828
|
+
// });
|
|
22829
|
+
// }
|
|
22830
|
+
// return { title_en: title_en, title_ar: title_ar, description_en: description_en, description_ar: description_ar, type: type, id: id, logo: logo };
|
|
22831
|
+
// };
|
|
22783
22832
|
var show_product_group_titles = function show_product_group_titles() {
|
|
22784
22833
|
var title_en = '';
|
|
22785
22834
|
var title_ar = '';
|
|
@@ -22791,6 +22840,15 @@ var CardsSection = function CardsSection(props) {
|
|
|
22791
22840
|
if (ProductFilterObjContext['collections'] != undefined && Array.isArray(ProductFilterObjContext['collections']) && ProductFilterObjContext['collections'][0] != undefined) {
|
|
22792
22841
|
id = ProductFilterObjContext['collections'][0];
|
|
22793
22842
|
}
|
|
22843
|
+
if (id == '') {
|
|
22844
|
+
var _window;
|
|
22845
|
+
var segments = (_window = window) === null || _window === void 0 || (_window = _window.location) === null || _window === void 0 || (_window = _window.pathname) === null || _window === void 0 || (_window = _window.split('/')) === null || _window === void 0 ? void 0 : _window.filter(function (segment) {
|
|
22846
|
+
return segment;
|
|
22847
|
+
}); // Removes empty strings
|
|
22848
|
+
|
|
22849
|
+
var lastParam = (segments === null || segments === void 0 ? void 0 : segments.length) > 0 ? segments[(segments === null || segments === void 0 ? void 0 : segments.length) - 1] : null;
|
|
22850
|
+
id = lastParam;
|
|
22851
|
+
}
|
|
22794
22852
|
if (id != null && id != '' && id != 'all') {
|
|
22795
22853
|
var _fetchCategoriesQuery4;
|
|
22796
22854
|
fetchCategoriesQueryContext === null || fetchCategoriesQueryContext === void 0 || (_fetchCategoriesQuery4 = fetchCategoriesQueryContext.data) === null || _fetchCategoriesQuery4 === void 0 || (_fetchCategoriesQuery4 = _fetchCategoriesQuery4.data) === null || _fetchCategoriesQuery4 === void 0 || (_fetchCategoriesQuery4 = _fetchCategoriesQuery4.categories) === null || _fetchCategoriesQuery4 === void 0 || _fetchCategoriesQuery4.map(function (catitem) {
|
|
@@ -22873,6 +22931,69 @@ var CardsSection = function CardsSection(props) {
|
|
|
22873
22931
|
size: sectionproperties.viewmoreiconfontsize
|
|
22874
22932
|
}))));
|
|
22875
22933
|
};
|
|
22934
|
+
var GroupByTitleSection = function GroupByTitleSection() {
|
|
22935
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22936
|
+
"class": authdetailsContext.instinfo.instid == '67d6bda67adf6' ? 'row m-0 w-100 px-5 px-md-0' : 'row m-0 w-100'
|
|
22937
|
+
}, authdetailsContext.instinfo.instid == '67d6bda67adf6' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22938
|
+
"class": "col-md-6 col-sm-12 d-none d-md-flex justify-content-end"
|
|
22939
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22940
|
+
style: {
|
|
22941
|
+
width: '90%',
|
|
22942
|
+
height: '90%'
|
|
22943
|
+
}
|
|
22944
|
+
}, /*#__PURE__*/React__default["default"].createElement(Imagekitimagecomp, {
|
|
22945
|
+
urlEndpoint: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimageendpoint,
|
|
22946
|
+
publicKey: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimagepublickey,
|
|
22947
|
+
path: show_product_group_titles()['logo'],
|
|
22948
|
+
className: sectionproperties.bgcovercontainresponsive == 'Contain' ? 'objectFit-md-contain' : '',
|
|
22949
|
+
style: {
|
|
22950
|
+
maxHeight: '100%',
|
|
22951
|
+
maxWidth: '100%'
|
|
22952
|
+
}
|
|
22953
|
+
}))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22954
|
+
"class": authdetailsContext.instinfo.instid == '67d6bda67adf6' ? 'col-lg-8 p-0' : 'col-lg-12 p-0'
|
|
22955
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22956
|
+
"class": "row m-0 w-100"
|
|
22957
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22958
|
+
"class": authdetailsContext.instinfo.instid == '67d6bda67adf6' ? 'col-lg-12 mb-3 mt-5 text-start mt-md-2' : 'col-lg-12 mb-3 mt-5 text-start'
|
|
22959
|
+
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
22960
|
+
"class": "m-0",
|
|
22961
|
+
style: {
|
|
22962
|
+
fontWeight: 700,
|
|
22963
|
+
fontSize: 27,
|
|
22964
|
+
color: sectionproperties.sectionTitleColor
|
|
22965
|
+
}
|
|
22966
|
+
}, langdetect == 'en' ? show_product_group_titles()['title_en'] : show_product_group_titles()['title_ar'])), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22967
|
+
"class": "col-lg-12 mb-3 text-start"
|
|
22968
|
+
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
22969
|
+
"class": "m-0",
|
|
22970
|
+
style: {
|
|
22971
|
+
fontSize: 18,
|
|
22972
|
+
color: sectionproperties.sectionTitleColor
|
|
22973
|
+
|
|
22974
|
+
// color: '#62554a',
|
|
22975
|
+
},
|
|
22976
|
+
dangerouslySetInnerHTML: {
|
|
22977
|
+
__html: show_product_group_titles()['description_en']
|
|
22978
|
+
}
|
|
22979
|
+
})))), authdetailsContext.instinfo.instid == '67d6bda67adf6' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22980
|
+
"class": "col-lg-4 d-flex d-md-none justify-content-end"
|
|
22981
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22982
|
+
style: {
|
|
22983
|
+
width: '90%',
|
|
22984
|
+
height: '90%'
|
|
22985
|
+
}
|
|
22986
|
+
}, /*#__PURE__*/React__default["default"].createElement(Imagekitimagecomp, {
|
|
22987
|
+
urlEndpoint: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimageendpoint,
|
|
22988
|
+
publicKey: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimagepublickey,
|
|
22989
|
+
path: show_product_group_titles()['logo'],
|
|
22990
|
+
className: sectionproperties.bgcovercontainresponsive == 'Contain' ? 'objectFit-md-contain' : '',
|
|
22991
|
+
style: {
|
|
22992
|
+
maxHeight: '100%',
|
|
22993
|
+
maxWidth: '100%'
|
|
22994
|
+
}
|
|
22995
|
+
}))));
|
|
22996
|
+
};
|
|
22876
22997
|
var cardsrender = function cardsrender() {
|
|
22877
22998
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22878
22999
|
"class": sectionproperties.showvariantfilter == 'Show' ? 'col-lg-9 col-md-12 col-sm-12 p-sm-0' : sectionproperties.showFilter == 'show' && sectionproperties.filterdirection == 'Vertical' ? sectionproperties.numofcols == '2' ? 'col-lg-10 col-md-12 col-sm-12 p-sm-0' : 'col-lg-9 col-md-12 col-sm-12 p-sm-0' : 'row m-0 w-100 p-sm-0'
|
|
@@ -23490,30 +23611,7 @@ var CardsSection = function CardsSection(props) {
|
|
|
23490
23611
|
}, sectionproperties.length != 0 && sectionproperties.showanimation == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23491
23612
|
"class": section_cssstyles.innercardssection + ' row ml-0 mr-0 d-flex justify-content-center w-md-100 h-md-100 w-100 ',
|
|
23492
23613
|
"data-aos": 'fade-up'
|
|
23493
|
-
}, sectionproperties.showproductgroupbytitle == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23494
|
-
"class": "col-lg-12 mb-3 mt-5 text-start"
|
|
23495
|
-
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
23496
|
-
"class": "m-0",
|
|
23497
|
-
style: {
|
|
23498
|
-
fontWeight: 700,
|
|
23499
|
-
fontSize: 27,
|
|
23500
|
-
// color: '#62554a'
|
|
23501
|
-
color: sectionproperties.sectionTitleColor
|
|
23502
|
-
}
|
|
23503
|
-
}, langdetect == 'en' ? show_product_group_titles()['title_en'] : show_product_group_titles()['title_ar'])), sectionproperties.showproductgroupbytitle == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23504
|
-
"class": "col-lg-12 mb-3 text-start"
|
|
23505
|
-
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
23506
|
-
"class": "m-0",
|
|
23507
|
-
style: {
|
|
23508
|
-
fontSize: 18,
|
|
23509
|
-
color: sectionproperties.sectionTitleColor
|
|
23510
|
-
|
|
23511
|
-
// color: '#62554a',
|
|
23512
|
-
},
|
|
23513
|
-
dangerouslySetInnerHTML: {
|
|
23514
|
-
__html: show_product_group_titles()['description_en']
|
|
23515
|
-
}
|
|
23516
|
-
})), sectionproperties.showFilter == 'show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23614
|
+
}, sectionproperties.showproductgroupbytitle == 'Show' && GroupByTitleSection(), sectionproperties.showFilter == 'show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23517
23615
|
className: sectionproperties.filterdirection == 'Horizontal' ? 'col-lg-12 d-flex p-0' : sectionproperties.numofcols == '2' ? 'col-lg-2 d-flex' : 'col-lg-3 d-flex'
|
|
23518
23616
|
}, /*#__PURE__*/React__default["default"].createElement(Filter$1, {
|
|
23519
23617
|
sectionpropertiesprops: sectionproperties,
|
|
@@ -23548,30 +23646,7 @@ var CardsSection = function CardsSection(props) {
|
|
|
23548
23646
|
}
|
|
23549
23647
|
}, langdetect == 'en' ? 'Contact Us' : 'إتصل بنا'))))), sectionproperties.length != 0 && sectionproperties.showanimation != 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23550
23648
|
"class": section_cssstyles.innercardssection + ' row ml-0 mr-0 d-flex justify-content-center w-md-100 h-md-100 w-100 '
|
|
23551
|
-
}, sectionproperties.showproductgroupbytitle == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23552
|
-
"class": "col-lg-12 mb-3 mt-5 text-start"
|
|
23553
|
-
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
23554
|
-
"class": "m-0",
|
|
23555
|
-
style: {
|
|
23556
|
-
fontWeight: 700,
|
|
23557
|
-
fontSize: 27,
|
|
23558
|
-
// color: '#62554a'
|
|
23559
|
-
color: sectionproperties.sectionTitleColor
|
|
23560
|
-
}
|
|
23561
|
-
}, langdetect == 'en' ? show_product_group_titles()['title_en'] : show_product_group_titles()['title_ar'])), sectionproperties.showproductgroupbytitle == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23562
|
-
"class": "col-lg-12 mb-3 text-start"
|
|
23563
|
-
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
23564
|
-
"class": "m-0",
|
|
23565
|
-
style: {
|
|
23566
|
-
fontSize: 18,
|
|
23567
|
-
color: sectionproperties.sectionTitleColor
|
|
23568
|
-
|
|
23569
|
-
// color: '#62554a',
|
|
23570
|
-
},
|
|
23571
|
-
dangerouslySetInnerHTML: {
|
|
23572
|
-
__html: show_product_group_titles()['description_en']
|
|
23573
|
-
}
|
|
23574
|
-
})), sectionproperties.showFilter == 'show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23649
|
+
}, sectionproperties.showproductgroupbytitle == 'Show' && GroupByTitleSection(), sectionproperties.showFilter == 'show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23575
23650
|
className: sectionproperties.filterdirection == 'Horizontal' ? 'col-lg-12 d-flex p-0' : sectionproperties.numofcols == '2' ? 'col-lg-2 d-flex' : 'col-lg-3 d-flex'
|
|
23576
23651
|
}, /*#__PURE__*/React__default["default"].createElement(Filter$1, {
|
|
23577
23652
|
sectionpropertiesprops: sectionproperties,
|
|
@@ -34335,9 +34410,12 @@ var CTAHeader = function CTAHeader(props) {
|
|
|
34335
34410
|
}))))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
34336
34411
|
"class": sectionproperties.generalbtn_show == 'Hide' && sectionproperties.fbbtn_show == 'Hide' && sectionproperties.instbtn_show == 'Hide' && sectionproperties.youtbtn_show == 'Hide' && sectionproperties.lang_position == 'Top' ? 'col-lg-12 p-0 d-flex align-items-center justify-content-center' : 'col-lg-8 p-0 d-flex align-items-center justify-content-center'
|
|
34337
34412
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
34338
|
-
"class": "
|
|
34413
|
+
"class": " w-100 align-items-center justify-content-center h-100 flex-row"
|
|
34414
|
+
// class="scrollhorizontal w-100 align-items-center justify-content-center h-100 flex-row"
|
|
34415
|
+
,
|
|
34339
34416
|
style: {
|
|
34340
|
-
display: sectionproperties.showhidesubheader == 'Show' && sectionproperties.subheaderposition == 'Besides Top Navigation' ? 'none' : 'flex'
|
|
34417
|
+
display: sectionproperties.showhidesubheader == 'Show' && sectionproperties.subheaderposition == 'Besides Top Navigation' ? 'none' : 'flex',
|
|
34418
|
+
flexWrap: 'wrap'
|
|
34341
34419
|
}
|
|
34342
34420
|
}, templatepropcontext.pagesnprop.map(function (item, index) {
|
|
34343
34421
|
if (item.isnavigation == 1 && item.isactive == 1) {
|
|
@@ -35983,7 +36061,7 @@ var SubheaderDropdown = function SubheaderDropdown(props) {
|
|
|
35983
36061
|
function ownKeys$1Z(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
35984
36062
|
function _objectSpread$1Z(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$1Z(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$1Z(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
35985
36063
|
var Simpleheader = function Simpleheader(props) {
|
|
35986
|
-
var _authdetailsContext$i, _authdetailsContext$i2, _header_cssstyles, _authdetailsContext$i3, _authdetailsContext$i4, _authdetailsContext$i5, _logoarrayofobjects$, _logoarrayofobjects$2, _authdetailsContext$i6, _authdetailsContext$
|
|
36064
|
+
var _authdetailsContext$i, _authdetailsContext$i2, _header_cssstyles, _authdetailsContext$i3, _authdetailsContext$i4, _authdetailsContext$i5, _logoarrayofobjects$, _logoarrayofobjects$2, _authdetailsContext$i6, _authdetailsContext$i10, _fetchcustomercartQue, _fetchcustomercartQue2, _authdetailsContext$c, _authdetailsContext$i11, _authdetailsContext$i12, _authdetailsContext$i13, _authdetailsContext$c2, _authdetailsContext$i14, _authdetailsContext$i15, _authdetailsContext$i16, _authdetailsContext$i17, _logoarrayofobjects$3, _logoarrayofobjects$4;
|
|
35987
36065
|
var actions = props.actions;
|
|
35988
36066
|
var _useState = React.useState(''),
|
|
35989
36067
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -36405,29 +36483,60 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36405
36483
|
}, templatepropcontext.pagesnprop.map(function (item, index) {
|
|
36406
36484
|
if (item.isselected) ;
|
|
36407
36485
|
if (item.isnavigation == 1 && item.isactive == 1) {
|
|
36408
|
-
var _authdetailsContext$i7
|
|
36409
|
-
|
|
36410
|
-
|
|
36411
|
-
|
|
36412
|
-
|
|
36413
|
-
|
|
36414
|
-
|
|
36415
|
-
|
|
36416
|
-
|
|
36417
|
-
|
|
36418
|
-
|
|
36419
|
-
|
|
36420
|
-
|
|
36421
|
-
|
|
36422
|
-
|
|
36423
|
-
|
|
36424
|
-
|
|
36425
|
-
|
|
36426
|
-
|
|
36486
|
+
var _authdetailsContext$i7;
|
|
36487
|
+
if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i7 = authdetailsContext.instinfo) === null || _authdetailsContext$i7 === void 0 ? void 0 : _authdetailsContext$i7.instid) == '67d6bda67adf6') {
|
|
36488
|
+
if (window.location.pathname == '/' + item.navigationroute) {
|
|
36489
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36490
|
+
"class": 'cursor-pointer p-2',
|
|
36491
|
+
onClick: function onClick() {
|
|
36492
|
+
routingcountext(item.navigationroute, false, '');
|
|
36493
|
+
// alert(window.location.pathname == '/' + item.navigationroute ? '1' : '2');
|
|
36494
|
+
},
|
|
36495
|
+
style: {
|
|
36496
|
+
background: '#14730D',
|
|
36497
|
+
borderRadius: 100
|
|
36498
|
+
}
|
|
36499
|
+
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
36500
|
+
"class": "".concat(headerstyles$9.link, " ").concat(header_cssstyles.navbar_item_text) + ' p-0 mb-0 '
|
|
36501
|
+
}, langdetect == 'en' ? item.pagename : item.pagename_ar));
|
|
36502
|
+
} else {
|
|
36503
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36504
|
+
"class": 'cursor-pointer',
|
|
36505
|
+
onClick: function onClick() {
|
|
36506
|
+
routingcountext(item.navigationroute, false, '');
|
|
36507
|
+
},
|
|
36508
|
+
style: {
|
|
36509
|
+
borderRadius: 100
|
|
36510
|
+
}
|
|
36511
|
+
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
36512
|
+
"class": "".concat(headerstyles$9.link, " ").concat(header_cssstyles.navbar_item_text) + ' p-0 mb-0 '
|
|
36513
|
+
}, langdetect == 'en' ? item.pagename : item.pagename_ar));
|
|
36427
36514
|
}
|
|
36428
|
-
}
|
|
36429
|
-
|
|
36430
|
-
|
|
36515
|
+
} else {
|
|
36516
|
+
var _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i0, _authdetailsContext$i1;
|
|
36517
|
+
/*#__PURE__*/React__default["default"].createElement("div", {
|
|
36518
|
+
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i8 = authdetailsContext.instinfo) === null || _authdetailsContext$i8 === void 0 ? void 0 : _authdetailsContext$i8.instid) == '67b1bb900a541' ? 'cursor-pointer p-2' :
|
|
36519
|
+
// : authdetailsContext?.instinfo?.instid == '67d6bda67adf6'
|
|
36520
|
+
// ? 'cursor-pointer p-2'
|
|
36521
|
+
'cursor-pointer'
|
|
36522
|
+
// scrollhorizontalcard
|
|
36523
|
+
,
|
|
36524
|
+
onClick: function onClick() {
|
|
36525
|
+
routingcountext(item.navigationroute, false, '');
|
|
36526
|
+
},
|
|
36527
|
+
style: {
|
|
36528
|
+
background: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i9 = authdetailsContext.instinfo) === null || _authdetailsContext$i9 === void 0 ? void 0 : _authdetailsContext$i9.instid) == '67b1bb900a541' ? window.location.pathname == '/' + item.navigationroute ? '#36322c' : 'transparent' :
|
|
36529
|
+
// : authdetailsContext?.instinfo?.instid == '67d6bda67adf6'
|
|
36530
|
+
// ? window.location.pathname == '/' + item.navigationroute
|
|
36531
|
+
// ? '#14730D'
|
|
36532
|
+
// : 'tranparent'
|
|
36533
|
+
'transprent',
|
|
36534
|
+
borderRadius: 100
|
|
36535
|
+
}
|
|
36536
|
+
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
36537
|
+
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i0 = authdetailsContext.instinfo) === null || _authdetailsContext$i0 === void 0 ? void 0 : _authdetailsContext$i0.instid) == '67b1bb900a541' && window.location.pathname == '/' + item.navigationroute ? "".concat(headerstyles$9.link, " ").concat(header_cssstyles.navbar_item_text, " ").concat(header_cssstyles.navbar_item_textactive) + ' p-0 mb-0 ' : (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i1 = authdetailsContext.instinfo) === null || _authdetailsContext$i1 === void 0 ? void 0 : _authdetailsContext$i1.instid) == '67d6bda67adf6' && window.location.pathname == '/' + item.navigationroute ? "".concat(headerstyles$9.link, " ").concat(header_cssstyles.navbar_item_text, " ").concat(header_cssstyles.navbar_item_textactive) + ' p-0 mb-0 ' : "".concat(headerstyles$9.link, " ").concat(header_cssstyles.navbar_item_text) + ' p-0 mb-0 '
|
|
36538
|
+
}, langdetect == 'en' ? item.pagename : item.pagename_ar));
|
|
36539
|
+
}
|
|
36431
36540
|
}
|
|
36432
36541
|
})), sectionproperties.showhidesubheader == 'Show' && sectionproperties.subheaderposition == 'Besides Top Navigation' && /*#__PURE__*/React__default["default"].createElement(Subheader, {
|
|
36433
36542
|
sectionpropertiesprops: sectionproperties,
|
|
@@ -36439,7 +36548,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36439
36548
|
subheadercontentpositionprops: sectionproperties.header_centered == 'Centered' ? 'center' : 'start'
|
|
36440
36549
|
}
|
|
36441
36550
|
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36442
|
-
"class": sectionproperties.showhidesubheader == 'Show' && sectionproperties.subheaderposition == 'Besides Top Navigation' ? authdetailsContext != undefined && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
36551
|
+
"class": sectionproperties.showhidesubheader == 'Show' && sectionproperties.subheaderposition == 'Besides Top Navigation' ? authdetailsContext != undefined && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i10 = authdetailsContext.instinfo) === null || _authdetailsContext$i10 === void 0 || (_authdetailsContext$i10 = _authdetailsContext$i10.instcurrencies) === null || _authdetailsContext$i10 === void 0 ? void 0 : _authdetailsContext$i10.length) > 1 ? 'col-lg-4 p-0 d-flex align-items-center justify-content-end' : 'col-lg-2 p-0 d-flex align-items-center justify-content-end' : 'col-lg-2 p-0 d-flex align-items-center justify-content-end'
|
|
36443
36552
|
}, sectionproperties.searchbar_show == 'Show' && /*#__PURE__*/React__default["default"].createElement("p", {
|
|
36444
36553
|
"class": sectionproperties.searchbaricon_fontsize == 0 ? header_cssstyles.searchicon + ' m-0 p-0 mx-2 ' : header_cssstyles.searchicon + ' m-0 p-0 mx-1 ',
|
|
36445
36554
|
style: {
|
|
@@ -36571,7 +36680,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36571
36680
|
"class": langdetect == 'en' ? 'mr-2' : 'ml-2'
|
|
36572
36681
|
}), sectionproperties.carticonstyle == 'Calendar 1' && /*#__PURE__*/React__default["default"].createElement(FiCalendar.FiCalendar, {
|
|
36573
36682
|
"class": langdetect == 'en' ? 'mr-2' : 'ml-2'
|
|
36574
|
-
}), langdetect == 'en' ? sectionproperties.previousorders_titleen : sectionproperties.previousorders_titlear))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
36683
|
+
}), langdetect == 'en' ? sectionproperties.previousorders_titleen : sectionproperties.previousorders_titlear))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i11 = authdetailsContext.instinfo) === null || _authdetailsContext$i11 === void 0 ? void 0 : _authdetailsContext$i11.instid) == '68248846ec6bc' && /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Divider, null), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i12 = authdetailsContext.instinfo) === null || _authdetailsContext$i12 === void 0 ? void 0 : _authdetailsContext$i12.instid) == '68248846ec6bc' && /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Item, {
|
|
36575
36684
|
onClick: function onClick() {
|
|
36576
36685
|
routingcountext(StaticPagesLinksContext.Ordershistory);
|
|
36577
36686
|
}
|
|
@@ -36627,7 +36736,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36627
36736
|
"class": ' h-100 d-flex align-items-center '
|
|
36628
36737
|
}, /*#__PURE__*/React__default["default"].createElement(HiUserCircle.HiUserCircle, {
|
|
36629
36738
|
size: sectionproperties.userBtnTextfontsize
|
|
36630
|
-
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
36739
|
+
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i13 = authdetailsContext.instinfo) === null || _authdetailsContext$i13 === void 0 ? void 0 : _authdetailsContext$i13.instid) == '67b1bb900a541' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
36631
36740
|
className: "mx-2",
|
|
36632
36741
|
style: {
|
|
36633
36742
|
fontSize: 18
|
|
@@ -36680,7 +36789,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36680
36789
|
"class": langdetect == 'en' ? 'mr-2' : 'ml-2'
|
|
36681
36790
|
}), sectionproperties.carticonstyle == 'Calendar 1' && /*#__PURE__*/React__default["default"].createElement(FiCalendar.FiCalendar, {
|
|
36682
36791
|
"class": langdetect == 'en' ? 'mr-2' : 'ml-2'
|
|
36683
|
-
}), langdetect == 'en' ? sectionproperties.previousorders_titleen : sectionproperties.previousorders_titlear))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
36792
|
+
}), langdetect == 'en' ? sectionproperties.previousorders_titleen : sectionproperties.previousorders_titlear))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i14 = authdetailsContext.instinfo) === null || _authdetailsContext$i14 === void 0 ? void 0 : _authdetailsContext$i14.instid) == '68248846ec6bc' && /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Divider, null), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i15 = authdetailsContext.instinfo) === null || _authdetailsContext$i15 === void 0 ? void 0 : _authdetailsContext$i15.instid) == '68248846ec6bc' && /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Item, {
|
|
36684
36793
|
onClick: function onClick() {
|
|
36685
36794
|
routingcountext(StaticPagesLinksContext.Ordershistory);
|
|
36686
36795
|
}
|
|
@@ -36820,7 +36929,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36820
36929
|
"class": "".concat(header_cssstyles.dropdownitem) + ' dropdownitem d-flex align-items-center m-0 p-0 '
|
|
36821
36930
|
}, /*#__PURE__*/React__default["default"].createElement("span", {
|
|
36822
36931
|
"class": "ml-2 mr-2"
|
|
36823
|
-
}, "English"))))))), authdetailsContext != undefined && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
36932
|
+
}, "English"))))))), authdetailsContext != undefined && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i16 = authdetailsContext.instinfo) === null || _authdetailsContext$i16 === void 0 || (_authdetailsContext$i16 = _authdetailsContext$i16.instcurrencies) === null || _authdetailsContext$i16 === void 0 ? void 0 : _authdetailsContext$i16.length) > 1 && sectionproperties.showcurrency == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36824
36933
|
"class": ' d-flex align-items-center justify-content-end '
|
|
36825
36934
|
}, /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"], null, /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Toggle, null, /*#__PURE__*/React__default["default"].createElement("li", {
|
|
36826
36935
|
"class": ' d-flex align-items-center justify-content-center '
|
|
@@ -36832,8 +36941,8 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36832
36941
|
"class": header_cssstyles.currencycont + ' row m-0 w-100 d-flex align-items-center '
|
|
36833
36942
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
36834
36943
|
"class": "m-0 p-0 ml-2 mr-2"
|
|
36835
|
-
}, authdetailsContext === null || authdetailsContext === void 0 ? void 0 : authdetailsContext.currencyname_ar), /*#__PURE__*/React__default["default"].createElement(MdKeyboardArrowDown.MdKeyboardArrowDown, null)))), /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Menu, null, authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
36836
|
-
var _authdetailsContext$
|
|
36944
|
+
}, authdetailsContext === null || authdetailsContext === void 0 ? void 0 : authdetailsContext.currencyname_ar), /*#__PURE__*/React__default["default"].createElement(MdKeyboardArrowDown.MdKeyboardArrowDown, null)))), /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Menu, null, authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i17 = authdetailsContext.instinfo) === null || _authdetailsContext$i17 === void 0 || (_authdetailsContext$i17 = _authdetailsContext$i17.instcurrencies) === null || _authdetailsContext$i17 === void 0 ? void 0 : _authdetailsContext$i17.map(function (item, index) {
|
|
36945
|
+
var _authdetailsContext$i18;
|
|
36837
36946
|
return /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Item, {
|
|
36838
36947
|
onClick: function onClick() {
|
|
36839
36948
|
setcurrencyfunccontext(item);
|
|
@@ -36849,7 +36958,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36849
36958
|
style: {}
|
|
36850
36959
|
}, /*#__PURE__*/React__default["default"].createElement(FaMoneyBillWave.FaMoneyBillWave, null), /*#__PURE__*/React__default["default"].createElement("span", {
|
|
36851
36960
|
"class": 'ml-2 mr-2'
|
|
36852
|
-
}, langdetect == 'en' ? item.currencyname_en : item.currencyname_ar)))), index != (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
36961
|
+
}, langdetect == 'en' ? item.currencyname_en : item.currencyname_ar)))), index != (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i18 = authdetailsContext.instinfo) === null || _authdetailsContext$i18 === void 0 || (_authdetailsContext$i18 = _authdetailsContext$i18.instcurrencies) === null || _authdetailsContext$i18 === void 0 ? void 0 : _authdetailsContext$i18.length) - 1 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36853
36962
|
"class": "col-lg-12 p-0"
|
|
36854
36963
|
}, /*#__PURE__*/React__default["default"].createElement("hr", {
|
|
36855
36964
|
"class": "m-0"
|
|
@@ -68236,6 +68345,8 @@ var DynamicForm = function DynamicForm(props) {
|
|
|
68236
68345
|
type = 'text';
|
|
68237
68346
|
} else if (item.type == 'phone number') {
|
|
68238
68347
|
type = 'phonenumber';
|
|
68348
|
+
} else if (item.type == 'fileup') {
|
|
68349
|
+
type = 'file';
|
|
68239
68350
|
}
|
|
68240
68351
|
if (item.type == 'date') {
|
|
68241
68352
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
@@ -68520,7 +68631,7 @@ var DynamicForm = function DynamicForm(props) {
|
|
|
68520
68631
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
68521
68632
|
"class": 'row m-0 w-100 '
|
|
68522
68633
|
}, dynamicform === null || dynamicform === void 0 || (_dynamicform$fields = dynamicform.fields) === null || _dynamicform$fields === void 0 ? void 0 : _dynamicform$fields.map(function (item, index) {
|
|
68523
|
-
if (item.type == 'text' || item.type == 'date' || item.type == 'number') {
|
|
68634
|
+
if (item.type == 'text' || item.type == 'date' || item.type == 'number' || item.type == 'fileup') {
|
|
68524
68635
|
return inputitem(item, index);
|
|
68525
68636
|
} else if (item.type == 'phone number') {
|
|
68526
68637
|
return phonenumber(item, index);
|
|
@@ -72670,6 +72781,37 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
72670
72781
|
}
|
|
72671
72782
|
})
|
|
72672
72783
|
};
|
|
72784
|
+
var SectionTitleSection = function SectionTitleSection() {
|
|
72785
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72786
|
+
"class": "col-lg-12 allcentered p-0",
|
|
72787
|
+
style: {
|
|
72788
|
+
zIndex: 1
|
|
72789
|
+
}
|
|
72790
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72791
|
+
"class": "".concat(generalstyles.sectiontitlecont) + ' col-lg-12 plr-1025-0 pl-md-3 pr-md-3 d-flex ',
|
|
72792
|
+
style: {
|
|
72793
|
+
marginTop: sectionproperties.sectionTitleMarginTop + 'px',
|
|
72794
|
+
marginBottom: sectionproperties.sectionTitleMarginBottom + 'px',
|
|
72795
|
+
paddingLeft: langdetect == 'en' ? sectionproperties.sectionTitleMarginLeft + 'px' : sectionproperties.sectionTitleMarginRight + 'px',
|
|
72796
|
+
paddingRight: langdetect == 'en' ? sectionproperties.sectionTitleMarginRight + 'px' : sectionproperties.sectionTitleMarginLeft + 'px',
|
|
72797
|
+
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
72798
|
+
}
|
|
72799
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72800
|
+
"class": "d-flex align-items-center flex-row ",
|
|
72801
|
+
style: {
|
|
72802
|
+
position: 'relative',
|
|
72803
|
+
width: sectionproperties.sectiontitlestyle == 'Line Before Text' ? '100%' : '',
|
|
72804
|
+
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
72805
|
+
}
|
|
72806
|
+
}, sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
72807
|
+
"class": sectionStyles.line_left
|
|
72808
|
+
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
72809
|
+
"class": sectionproperties.sectiontitlefontfamily == 'Pacifico' ? "".concat(sectionStyles.sectiontitlespan) + ' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Playfair' ? "".concat(sectionStyles.sectiontitlespan) + ' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Great Vibes' ? "".concat(sectionStyles.sectiontitlespan) + ' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Quicksand' ? "".concat(sectionStyles.sectiontitlespan) + ' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Satisfy' ? "".concat(sectionStyles.sectiontitlespan) + ' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : "".concat(sectionStyles.sectiontitlespan) + ' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ',
|
|
72810
|
+
style: {}
|
|
72811
|
+
}, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar), sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
72812
|
+
"class": sectionStyles.line_right
|
|
72813
|
+
}))));
|
|
72814
|
+
};
|
|
72673
72815
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72674
72816
|
"class": ' row ml-0 mr-0 w-md-100 d-flex align-items-center w-100 ',
|
|
72675
72817
|
style: {
|
|
@@ -72702,35 +72844,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
72702
72844
|
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72703
72845
|
"class": sectionStyles.containerrrr + ' row ml-0 mr-0 w-100 d-flex justify-content-center pl-md-1 pr-md-1 px-2015-3 ',
|
|
72704
72846
|
style: {}
|
|
72705
|
-
}, sectionproperties.sectiontitleshow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72706
|
-
"class": "col-lg-12 allcentered p-0",
|
|
72707
|
-
style: {
|
|
72708
|
-
zIndex: 1
|
|
72709
|
-
}
|
|
72710
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72711
|
-
"class": "".concat(generalstyles.sectiontitlecont) + ' col-lg-12 plr-1025-0 pl-md-3 pr-md-3 d-flex ',
|
|
72712
|
-
style: {
|
|
72713
|
-
marginTop: sectionproperties.sectionTitleMarginTop + 'px',
|
|
72714
|
-
marginBottom: sectionproperties.sectionTitleMarginBottom + 'px',
|
|
72715
|
-
paddingLeft: langdetect == 'en' ? sectionproperties.sectionTitleMarginLeft + 'px' : sectionproperties.sectionTitleMarginRight + 'px',
|
|
72716
|
-
paddingRight: langdetect == 'en' ? sectionproperties.sectionTitleMarginRight + 'px' : sectionproperties.sectionTitleMarginLeft + 'px',
|
|
72717
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
72718
|
-
}
|
|
72719
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72720
|
-
"class": "d-flex align-items-center flex-row ",
|
|
72721
|
-
style: {
|
|
72722
|
-
position: 'relative',
|
|
72723
|
-
width: sectionproperties.sectiontitlestyle == 'Line Before Text' ? '100%' : '',
|
|
72724
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
72725
|
-
}
|
|
72726
|
-
}, sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
72727
|
-
"class": sectionStyles.line_left
|
|
72728
|
-
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
72729
|
-
"class": sectionproperties.sectiontitlefontfamily == 'Pacifico' ? "".concat(sectionStyles.sectiontitlespan) + ' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Playfair' ? "".concat(sectionStyles.sectiontitlespan) + ' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Great Vibes' ? "".concat(sectionStyles.sectiontitlespan) + ' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Quicksand' ? "".concat(sectionStyles.sectiontitlespan) + ' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Satisfy' ? "".concat(sectionStyles.sectiontitlespan) + ' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : "".concat(sectionStyles.sectiontitlespan) + ' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ',
|
|
72730
|
-
style: {}
|
|
72731
|
-
}, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar), sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
72732
|
-
"class": sectionStyles.line_right
|
|
72733
|
-
})))), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72847
|
+
}, sectionproperties.sectiontitleshow == 'Show' && SectionTitleSection(), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72734
72848
|
"class": ' col-lg-12 col-md-12 col-sm-12 d-flex align-items-center px-sm-3',
|
|
72735
72849
|
style: {
|
|
72736
72850
|
justifyContent: sectionproperties.descriptionCentered == 'Centered' ? 'center' : 'start',
|
|
@@ -72799,7 +72913,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
72799
72913
|
objectFit: 'contain'
|
|
72800
72914
|
}
|
|
72801
72915
|
}))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72802
|
-
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i3 = authdetailsContext.instinfo) === null || _authdetailsContext$i3 === void 0 ? void 0 : _authdetailsContext$i3.contactinfo.instid) == '6790ae890234e' ? sectionStyles.icontxtcont + ' row m-0 w-100 allcentered px-5 px-md-3 ' :
|
|
72916
|
+
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i3 = authdetailsContext.instinfo) === null || _authdetailsContext$i3 === void 0 ? void 0 : _authdetailsContext$i3.contactinfo.instid) == '6790ae890234e' ? sectionStyles.icontxtcont + ' row m-0 w-100 allcentered px-5 px-md-3 ' : ' row m-0 w-100 allcentered ',
|
|
72803
72917
|
style: {}
|
|
72804
72918
|
}, sectionproperties.showrating == 'Show' && cardinfoitem.ratingnumber != null && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72805
72919
|
"class": "col-lg-12 allcentered p-0 mb-1"
|
|
@@ -72830,7 +72944,31 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
72830
72944
|
}
|
|
72831
72945
|
})),
|
|
72832
72946
|
activeColor: sectionproperties.generalbtn_textColor
|
|
72833
|
-
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72947
|
+
})), sectionproperties.animatednumbers == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72948
|
+
"class": "col-lg-12 d-flex p-0",
|
|
72949
|
+
style: {
|
|
72950
|
+
marginBottom: sectionproperties.slideshowText1Content_marginBottom + 'px',
|
|
72951
|
+
justifyContent: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : 'start'
|
|
72952
|
+
}
|
|
72953
|
+
}, /*#__PURE__*/React__default["default"].createElement(AnimatedNumbers__default["default"], {
|
|
72954
|
+
includeComma: true,
|
|
72955
|
+
className: 'animatedcontainer',
|
|
72956
|
+
transitions: function transitions(index) {
|
|
72957
|
+
return {
|
|
72958
|
+
type: 'spring',
|
|
72959
|
+
duration: index + 0.3,
|
|
72960
|
+
delay: 3
|
|
72961
|
+
};
|
|
72962
|
+
},
|
|
72963
|
+
animateToNumber: langdetect == 'en' ? parseInt(cardinfoitem.cardobj_titleen) : parseInt(cardinfoitem.cardobj_titleen),
|
|
72964
|
+
fontStyle: {
|
|
72965
|
+
color: cardinfoitem.text1colorfromarray,
|
|
72966
|
+
textAlign: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : langdetect == 'en' ? 'left' : 'right',
|
|
72967
|
+
fontSize: sectionproperties.slideshowText1ContentFontSize + 'px',
|
|
72968
|
+
fontWeight: sectionproperties.slideshowText1ContentFontWeight,
|
|
72969
|
+
direction: 'ltr'
|
|
72970
|
+
}
|
|
72971
|
+
})), sectionproperties.animatednumbers != 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72834
72972
|
"class": "col-lg-12 d-flex p-0",
|
|
72835
72973
|
style: {
|
|
72836
72974
|
marginBottom: sectionproperties.slideshowText1Content_marginBottom + 'px',
|
|
@@ -72917,35 +73055,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
72917
73055
|
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72918
73056
|
"class": sectionStyles.containerrrr + ' row ml-0 mr-0 w-100 d-flex justify-content-center pl-md-1 pr-md-1 px-2015-3 ',
|
|
72919
73057
|
style: {}
|
|
72920
|
-
}, sectionproperties.sectiontitleshow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72921
|
-
"class": "col-lg-12 allcentered p-0",
|
|
72922
|
-
style: {
|
|
72923
|
-
zIndex: 1
|
|
72924
|
-
}
|
|
72925
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72926
|
-
"class": "".concat(generalstyles.sectiontitlecont) + ' col-lg-12 plr-1025-0 pl-md-3 pr-md-3 d-flex ',
|
|
72927
|
-
style: {
|
|
72928
|
-
marginTop: sectionproperties.sectionTitleMarginTop + 'px',
|
|
72929
|
-
marginBottom: sectionproperties.sectionTitleMarginBottom + 'px',
|
|
72930
|
-
paddingLeft: langdetect == 'en' ? sectionproperties.sectionTitleMarginLeft + 'px' : sectionproperties.sectionTitleMarginRight + 'px',
|
|
72931
|
-
paddingRight: langdetect == 'en' ? sectionproperties.sectionTitleMarginRight + 'px' : sectionproperties.sectionTitleMarginLeft + 'px',
|
|
72932
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
72933
|
-
}
|
|
72934
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72935
|
-
"class": "d-flex align-items-center flex-row ",
|
|
72936
|
-
style: {
|
|
72937
|
-
position: 'relative',
|
|
72938
|
-
width: sectionproperties.sectiontitlestyle == 'Line Before Text' ? '100%' : '',
|
|
72939
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
72940
|
-
}
|
|
72941
|
-
}, sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
72942
|
-
"class": sectionStyles.line_left
|
|
72943
|
-
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
72944
|
-
"class": sectionproperties.sectiontitlefontfamily == 'Pacifico' ? "".concat(sectionStyles.sectiontitlespan) + ' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Playfair' ? "".concat(sectionStyles.sectiontitlespan) + ' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Great Vibes' ? "".concat(sectionStyles.sectiontitlespan) + ' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Quicksand' ? "".concat(sectionStyles.sectiontitlespan) + ' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Satisfy' ? "".concat(sectionStyles.sectiontitlespan) + ' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : "".concat(sectionStyles.sectiontitlespan) + ' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ',
|
|
72945
|
-
style: {}
|
|
72946
|
-
}, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar), sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
72947
|
-
"class": sectionStyles.line_right
|
|
72948
|
-
})))), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73058
|
+
}, sectionproperties.sectiontitleshow == 'Show' && SectionTitleSection(), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72949
73059
|
"class": ' col-lg-12 col-md-12 col-sm-12 d-flex align-items-center px-sm-3',
|
|
72950
73060
|
style: {
|
|
72951
73061
|
justifyContent: sectionproperties.descriptionCentered == 'Centered' ? 'center' : 'start',
|
|
@@ -73461,35 +73571,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
73461
73571
|
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73462
73572
|
"class": sectionStyles.containerrrr + ' row ml-0 mr-0 w-100 d-flex justify-content-center pl-md-1 pr-md-1 px-2015-3 ',
|
|
73463
73573
|
style: {}
|
|
73464
|
-
}, sectionproperties.sectiontitleshow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73465
|
-
"class": "col-lg-12 allcentered p-0",
|
|
73466
|
-
style: {
|
|
73467
|
-
zIndex: 1
|
|
73468
|
-
}
|
|
73469
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73470
|
-
"class": "".concat(generalstyles.sectiontitlecont) + ' col-lg-12 plr-1025-0 pl-md-3 pr-md-3 d-flex ',
|
|
73471
|
-
style: {
|
|
73472
|
-
marginTop: sectionproperties.sectionTitleMarginTop + 'px',
|
|
73473
|
-
marginBottom: sectionproperties.sectionTitleMarginBottom + 'px',
|
|
73474
|
-
paddingLeft: langdetect == 'en' ? sectionproperties.sectionTitleMarginLeft + 'px' : sectionproperties.sectionTitleMarginRight + 'px',
|
|
73475
|
-
paddingRight: langdetect == 'en' ? sectionproperties.sectionTitleMarginRight + 'px' : sectionproperties.sectionTitleMarginLeft + 'px',
|
|
73476
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
73477
|
-
}
|
|
73478
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73479
|
-
"class": "d-flex align-items-center flex-row ",
|
|
73480
|
-
style: {
|
|
73481
|
-
position: 'relative',
|
|
73482
|
-
width: sectionproperties.sectiontitlestyle == 'Line Before Text' ? '100%' : '',
|
|
73483
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
73484
|
-
}
|
|
73485
|
-
}, sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
73486
|
-
"class": sectionStyles.line_left
|
|
73487
|
-
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
73488
|
-
"class": sectionproperties.sectiontitlefontfamily == 'Pacifico' ? "".concat(sectionStyles.sectiontitlespan) + ' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Playfair' ? "".concat(sectionStyles.sectiontitlespan) + ' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Great Vibes' ? "".concat(sectionStyles.sectiontitlespan) + ' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Quicksand' ? "".concat(sectionStyles.sectiontitlespan) + ' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : sectionproperties.sectiontitlefontfamily == 'Satisfy' ? "".concat(sectionStyles.sectiontitlespan) + ' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ' : "".concat(sectionStyles.sectiontitlespan) + ' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center ',
|
|
73489
|
-
style: {}
|
|
73490
|
-
}, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar), sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
73491
|
-
"class": sectionStyles.line_right
|
|
73492
|
-
})))), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73574
|
+
}, sectionproperties.sectiontitleshow == 'Show' && SectionTitleSection(), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73493
73575
|
"class": ' col-lg-12 col-md-12 col-sm-12 d-flex align-items-center px-sm-3',
|
|
73494
73576
|
style: {
|
|
73495
73577
|
justifyContent: sectionproperties.descriptionCentered == 'Centered' ? 'center' : 'start',
|
|
@@ -75307,24 +75389,32 @@ var Slideshowzoom = function Slideshowzoom(props) {
|
|
|
75307
75389
|
"class": sectionproperties.text1centered == 'Centered' ? 'col-lg-12 allcentered mb-1' : 'col-lg-12 mb-1 text-start'
|
|
75308
75390
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
75309
75391
|
className: slideshow_styles.text1styles + ' m-0 p-0 wordbreak ',
|
|
75310
|
-
style: {
|
|
75392
|
+
style: {
|
|
75393
|
+
textAlign: sectionproperties.text1centered == 'Centered' ? 'center' : langdetect == 'en' ? 'left' : 'right'
|
|
75394
|
+
}
|
|
75311
75395
|
}, langdetect == 'en' ? item.titleen : item.titlear)), sectionproperties.showanimation == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
75312
75396
|
"class": sectionproperties.text1centered == 'Centered' ? 'col-lg-12 allcentered mb-1' : 'col-lg-12 mb-1 text-start',
|
|
75313
75397
|
"data-aos": 'fade-up'
|
|
75314
75398
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
75315
75399
|
className: slideshow_styles.text1styles + ' m-0 p-0 wordbreak ',
|
|
75316
|
-
style: {
|
|
75400
|
+
style: {
|
|
75401
|
+
textAlign: sectionproperties.text1centered == 'Centered' ? 'center' : langdetect == 'en' ? 'left' : 'right'
|
|
75402
|
+
}
|
|
75317
75403
|
}, langdetect == 'en' ? item.titleen : item.titlear)), sectionproperties.slideshowText2ContentFontSize != 0 && sectionproperties.showanimation == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
75318
75404
|
"class": sectionproperties.text2centered == 'Centered' ? 'col-lg-12 allcentered mb-3' : 'col-lg-12 mb-3 text-start ',
|
|
75319
75405
|
"data-aos": 'fade-up'
|
|
75320
75406
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
75321
75407
|
className: slideshow_styles.text2styles + ' m-0 p-0 wordbreak ',
|
|
75322
|
-
style: {
|
|
75408
|
+
style: {
|
|
75409
|
+
textAlign: sectionproperties.text1centered == 'Centered' ? 'center' : langdetect == 'en' ? 'left' : 'right'
|
|
75410
|
+
}
|
|
75323
75411
|
}, langdetect == 'en' ? item.descriptionen : item.descriptionar)), sectionproperties.slideshowText2ContentFontSize != 0 && sectionproperties.showanimation != 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
75324
75412
|
"class": sectionproperties.text2centered == 'Centered' ? 'col-lg-12 allcentered mb-3' : 'col-lg-12 mb-3 text-start '
|
|
75325
75413
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
75326
75414
|
className: slideshow_styles.text2styles + ' m-0 p-0 wordbreak ',
|
|
75327
|
-
style: {
|
|
75415
|
+
style: {
|
|
75416
|
+
textAlign: sectionproperties.text1centered == 'Centered' ? 'center' : langdetect == 'en' ? 'left' : 'right'
|
|
75417
|
+
}
|
|
75328
75418
|
}, langdetect == 'en' ? item.descriptionen : item.descriptionar)), sectionproperties.generalbtn_show == 'Show' && sectionproperties.showanimation != 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
75329
75419
|
"class":
|
|
75330
75420
|
// sectionproperties.generalbtn_position == 'Centered'
|
|
@@ -77142,6 +77232,10 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77142
77232
|
"class": ' m-0 p-0 wordbreak wordbreak1 ',
|
|
77143
77233
|
onClick: function onClick() {
|
|
77144
77234
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'categories/' + item.categoryid);
|
|
77235
|
+
},
|
|
77236
|
+
style: {
|
|
77237
|
+
fontSize: 15,
|
|
77238
|
+
fontWeight: 600
|
|
77145
77239
|
}
|
|
77146
77240
|
}, langdetect == 'en' ? item.title_en : item.title_ar)), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77147
77241
|
className: 'col-lg-2 col-md-2 col-sm-2 d-flex justify-content-end align-items-center p-0 '
|
|
@@ -77171,6 +77265,10 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77171
77265
|
"class": ' m-0 p-0 wordbreak wordbreak1 ',
|
|
77172
77266
|
onClick: function onClick() {
|
|
77173
77267
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'parentcollections/' + item.parentcollectionid);
|
|
77268
|
+
},
|
|
77269
|
+
style: {
|
|
77270
|
+
fontSize: 15,
|
|
77271
|
+
fontWeight: 600
|
|
77174
77272
|
}
|
|
77175
77273
|
}, langdetect == 'en' ? item.title_en : item.title_ar)), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77176
77274
|
className: 'col-lg-2 col-md-2 col-sm-2 d-flex justify-content-end align-items-center p-0 '
|
|
@@ -77217,6 +77315,10 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77217
77315
|
"class": ' m-0 p-0 wordbreak wordbreak1 ',
|
|
77218
77316
|
onClick: function onClick() {
|
|
77219
77317
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'collections/' + item.collectionid);
|
|
77318
|
+
},
|
|
77319
|
+
style: {
|
|
77320
|
+
fontSize: 14,
|
|
77321
|
+
fontWeight: 500
|
|
77220
77322
|
}
|
|
77221
77323
|
}, langdetect == 'en' ? item.title_en : item.title_ar)), index != pcollarray - 1 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77222
77324
|
className: "col-lg-12 p-0 mt-3 mb-3"
|
|
@@ -77244,7 +77346,9 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77244
77346
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'parentcollections/' + item.parentcollectionid);
|
|
77245
77347
|
},
|
|
77246
77348
|
style: {
|
|
77247
|
-
textAlign: langdetect == 'en' ? 'left' : 'right'
|
|
77349
|
+
textAlign: langdetect == 'en' ? 'left' : 'right',
|
|
77350
|
+
fontSize: 15,
|
|
77351
|
+
fontWeight: 600
|
|
77248
77352
|
}
|
|
77249
77353
|
}, langdetect == 'en' ? item.title_en : item.title_ar), item === null || item === void 0 || (_item$collections = item.collections) === null || _item$collections === void 0 ? void 0 : _item$collections.map(function (item, index) {
|
|
77250
77354
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
@@ -77255,7 +77359,9 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77255
77359
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'collections/' + item.collectionid);
|
|
77256
77360
|
},
|
|
77257
77361
|
style: {
|
|
77258
|
-
textAlign: langdetect == 'en' ? 'left' : 'right'
|
|
77362
|
+
textAlign: langdetect == 'en' ? 'left' : 'right',
|
|
77363
|
+
fontSize: 14,
|
|
77364
|
+
fontWeight: 400
|
|
77259
77365
|
}
|
|
77260
77366
|
}, langdetect == 'en' ? item.title_en : item.title_ar));
|
|
77261
77367
|
}));
|
|
@@ -77280,7 +77386,9 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77280
77386
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
77281
77387
|
"class": slideshow_styles.collectionName + ' cursor-pointer wordbreak wordbreak2 mb-1 ',
|
|
77282
77388
|
style: {
|
|
77283
|
-
textAlign: langdetect == 'en' ? 'left' : 'right'
|
|
77389
|
+
textAlign: langdetect == 'en' ? 'left' : 'right',
|
|
77390
|
+
fontSize: 15,
|
|
77391
|
+
fontWeight: 500
|
|
77284
77392
|
}
|
|
77285
77393
|
}, langdetect == 'en' ? item.title_en : item.title_ar)));
|
|
77286
77394
|
}))))))), /*#__PURE__*/React__default["default"].createElement("div", {
|