tabexseriescomponents 0.2.916 → 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 +281 -176
- package/dist/index.esm.js +281 -176
- package/dist/index.umd.js +281 -176
- 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,
|
|
@@ -35986,7 +36061,7 @@ var SubheaderDropdown = function SubheaderDropdown(props) {
|
|
|
35986
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; }
|
|
35987
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; }
|
|
35988
36063
|
var Simpleheader = function Simpleheader(props) {
|
|
35989
|
-
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;
|
|
35990
36065
|
var actions = props.actions;
|
|
35991
36066
|
var _useState = React.useState(''),
|
|
35992
36067
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -36408,29 +36483,60 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36408
36483
|
}, templatepropcontext.pagesnprop.map(function (item, index) {
|
|
36409
36484
|
if (item.isselected) ;
|
|
36410
36485
|
if (item.isnavigation == 1 && item.isactive == 1) {
|
|
36411
|
-
var _authdetailsContext$i7
|
|
36412
|
-
|
|
36413
|
-
|
|
36414
|
-
|
|
36415
|
-
|
|
36416
|
-
|
|
36417
|
-
|
|
36418
|
-
|
|
36419
|
-
|
|
36420
|
-
|
|
36421
|
-
|
|
36422
|
-
|
|
36423
|
-
|
|
36424
|
-
|
|
36425
|
-
|
|
36426
|
-
|
|
36427
|
-
|
|
36428
|
-
|
|
36429
|
-
|
|
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));
|
|
36430
36514
|
}
|
|
36431
|
-
}
|
|
36432
|
-
|
|
36433
|
-
|
|
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
|
+
}
|
|
36434
36540
|
}
|
|
36435
36541
|
})), sectionproperties.showhidesubheader == 'Show' && sectionproperties.subheaderposition == 'Besides Top Navigation' && /*#__PURE__*/React__default["default"].createElement(Subheader, {
|
|
36436
36542
|
sectionpropertiesprops: sectionproperties,
|
|
@@ -36442,7 +36548,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36442
36548
|
subheadercontentpositionprops: sectionproperties.header_centered == 'Centered' ? 'center' : 'start'
|
|
36443
36549
|
}
|
|
36444
36550
|
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36445
|
-
"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'
|
|
36446
36552
|
}, sectionproperties.searchbar_show == 'Show' && /*#__PURE__*/React__default["default"].createElement("p", {
|
|
36447
36553
|
"class": sectionproperties.searchbaricon_fontsize == 0 ? header_cssstyles.searchicon + ' m-0 p-0 mx-2 ' : header_cssstyles.searchicon + ' m-0 p-0 mx-1 ',
|
|
36448
36554
|
style: {
|
|
@@ -36574,7 +36680,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36574
36680
|
"class": langdetect == 'en' ? 'mr-2' : 'ml-2'
|
|
36575
36681
|
}), sectionproperties.carticonstyle == 'Calendar 1' && /*#__PURE__*/React__default["default"].createElement(FiCalendar.FiCalendar, {
|
|
36576
36682
|
"class": langdetect == 'en' ? 'mr-2' : 'ml-2'
|
|
36577
|
-
}), 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, {
|
|
36578
36684
|
onClick: function onClick() {
|
|
36579
36685
|
routingcountext(StaticPagesLinksContext.Ordershistory);
|
|
36580
36686
|
}
|
|
@@ -36630,7 +36736,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36630
36736
|
"class": ' h-100 d-flex align-items-center '
|
|
36631
36737
|
}, /*#__PURE__*/React__default["default"].createElement(HiUserCircle.HiUserCircle, {
|
|
36632
36738
|
size: sectionproperties.userBtnTextfontsize
|
|
36633
|
-
})), (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", {
|
|
36634
36740
|
className: "mx-2",
|
|
36635
36741
|
style: {
|
|
36636
36742
|
fontSize: 18
|
|
@@ -36683,7 +36789,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36683
36789
|
"class": langdetect == 'en' ? 'mr-2' : 'ml-2'
|
|
36684
36790
|
}), sectionproperties.carticonstyle == 'Calendar 1' && /*#__PURE__*/React__default["default"].createElement(FiCalendar.FiCalendar, {
|
|
36685
36791
|
"class": langdetect == 'en' ? 'mr-2' : 'ml-2'
|
|
36686
|
-
}), 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, {
|
|
36687
36793
|
onClick: function onClick() {
|
|
36688
36794
|
routingcountext(StaticPagesLinksContext.Ordershistory);
|
|
36689
36795
|
}
|
|
@@ -36823,7 +36929,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36823
36929
|
"class": "".concat(header_cssstyles.dropdownitem) + ' dropdownitem d-flex align-items-center m-0 p-0 '
|
|
36824
36930
|
}, /*#__PURE__*/React__default["default"].createElement("span", {
|
|
36825
36931
|
"class": "ml-2 mr-2"
|
|
36826
|
-
}, "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", {
|
|
36827
36933
|
"class": ' d-flex align-items-center justify-content-end '
|
|
36828
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", {
|
|
36829
36935
|
"class": ' d-flex align-items-center justify-content-center '
|
|
@@ -36835,8 +36941,8 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36835
36941
|
"class": header_cssstyles.currencycont + ' row m-0 w-100 d-flex align-items-center '
|
|
36836
36942
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
36837
36943
|
"class": "m-0 p-0 ml-2 mr-2"
|
|
36838
|
-
}, 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$
|
|
36839
|
-
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;
|
|
36840
36946
|
return /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Item, {
|
|
36841
36947
|
onClick: function onClick() {
|
|
36842
36948
|
setcurrencyfunccontext(item);
|
|
@@ -36852,7 +36958,7 @@ var Simpleheader = function Simpleheader(props) {
|
|
|
36852
36958
|
style: {}
|
|
36853
36959
|
}, /*#__PURE__*/React__default["default"].createElement(FaMoneyBillWave.FaMoneyBillWave, null), /*#__PURE__*/React__default["default"].createElement("span", {
|
|
36854
36960
|
"class": 'ml-2 mr-2'
|
|
36855
|
-
}, 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", {
|
|
36856
36962
|
"class": "col-lg-12 p-0"
|
|
36857
36963
|
}, /*#__PURE__*/React__default["default"].createElement("hr", {
|
|
36858
36964
|
"class": "m-0"
|
|
@@ -68239,6 +68345,8 @@ var DynamicForm = function DynamicForm(props) {
|
|
|
68239
68345
|
type = 'text';
|
|
68240
68346
|
} else if (item.type == 'phone number') {
|
|
68241
68347
|
type = 'phonenumber';
|
|
68348
|
+
} else if (item.type == 'fileup') {
|
|
68349
|
+
type = 'file';
|
|
68242
68350
|
}
|
|
68243
68351
|
if (item.type == 'date') {
|
|
68244
68352
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
@@ -68523,7 +68631,7 @@ var DynamicForm = function DynamicForm(props) {
|
|
|
68523
68631
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
68524
68632
|
"class": 'row m-0 w-100 '
|
|
68525
68633
|
}, dynamicform === null || dynamicform === void 0 || (_dynamicform$fields = dynamicform.fields) === null || _dynamicform$fields === void 0 ? void 0 : _dynamicform$fields.map(function (item, index) {
|
|
68526
|
-
if (item.type == 'text' || item.type == 'date' || item.type == 'number') {
|
|
68634
|
+
if (item.type == 'text' || item.type == 'date' || item.type == 'number' || item.type == 'fileup') {
|
|
68527
68635
|
return inputitem(item, index);
|
|
68528
68636
|
} else if (item.type == 'phone number') {
|
|
68529
68637
|
return phonenumber(item, index);
|
|
@@ -72673,6 +72781,37 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
72673
72781
|
}
|
|
72674
72782
|
})
|
|
72675
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
|
+
};
|
|
72676
72815
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72677
72816
|
"class": ' row ml-0 mr-0 w-md-100 d-flex align-items-center w-100 ',
|
|
72678
72817
|
style: {
|
|
@@ -72705,35 +72844,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
72705
72844
|
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72706
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 ',
|
|
72707
72846
|
style: {}
|
|
72708
|
-
}, sectionproperties.sectiontitleshow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72709
|
-
"class": "col-lg-12 allcentered p-0",
|
|
72710
|
-
style: {
|
|
72711
|
-
zIndex: 1
|
|
72712
|
-
}
|
|
72713
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72714
|
-
"class": "".concat(generalstyles.sectiontitlecont) + ' col-lg-12 plr-1025-0 pl-md-3 pr-md-3 d-flex ',
|
|
72715
|
-
style: {
|
|
72716
|
-
marginTop: sectionproperties.sectionTitleMarginTop + 'px',
|
|
72717
|
-
marginBottom: sectionproperties.sectionTitleMarginBottom + 'px',
|
|
72718
|
-
paddingLeft: langdetect == 'en' ? sectionproperties.sectionTitleMarginLeft + 'px' : sectionproperties.sectionTitleMarginRight + 'px',
|
|
72719
|
-
paddingRight: langdetect == 'en' ? sectionproperties.sectionTitleMarginRight + 'px' : sectionproperties.sectionTitleMarginLeft + 'px',
|
|
72720
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
72721
|
-
}
|
|
72722
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72723
|
-
"class": "d-flex align-items-center flex-row ",
|
|
72724
|
-
style: {
|
|
72725
|
-
position: 'relative',
|
|
72726
|
-
width: sectionproperties.sectiontitlestyle == 'Line Before Text' ? '100%' : '',
|
|
72727
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
72728
|
-
}
|
|
72729
|
-
}, sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
72730
|
-
"class": sectionStyles.line_left
|
|
72731
|
-
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
72732
|
-
"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 ',
|
|
72733
|
-
style: {}
|
|
72734
|
-
}, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar), sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
72735
|
-
"class": sectionStyles.line_right
|
|
72736
|
-
})))), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72847
|
+
}, sectionproperties.sectiontitleshow == 'Show' && SectionTitleSection(), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72737
72848
|
"class": ' col-lg-12 col-md-12 col-sm-12 d-flex align-items-center px-sm-3',
|
|
72738
72849
|
style: {
|
|
72739
72850
|
justifyContent: sectionproperties.descriptionCentered == 'Centered' ? 'center' : 'start',
|
|
@@ -72802,7 +72913,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
72802
72913
|
objectFit: 'contain'
|
|
72803
72914
|
}
|
|
72804
72915
|
}))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72805
|
-
"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 ',
|
|
72806
72917
|
style: {}
|
|
72807
72918
|
}, sectionproperties.showrating == 'Show' && cardinfoitem.ratingnumber != null && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72808
72919
|
"class": "col-lg-12 allcentered p-0 mb-1"
|
|
@@ -72833,7 +72944,31 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
72833
72944
|
}
|
|
72834
72945
|
})),
|
|
72835
72946
|
activeColor: sectionproperties.generalbtn_textColor
|
|
72836
|
-
})), /*#__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", {
|
|
72837
72972
|
"class": "col-lg-12 d-flex p-0",
|
|
72838
72973
|
style: {
|
|
72839
72974
|
marginBottom: sectionproperties.slideshowText1Content_marginBottom + 'px',
|
|
@@ -72920,35 +73055,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
72920
73055
|
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72921
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 ',
|
|
72922
73057
|
style: {}
|
|
72923
|
-
}, sectionproperties.sectiontitleshow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72924
|
-
"class": "col-lg-12 allcentered p-0",
|
|
72925
|
-
style: {
|
|
72926
|
-
zIndex: 1
|
|
72927
|
-
}
|
|
72928
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72929
|
-
"class": "".concat(generalstyles.sectiontitlecont) + ' col-lg-12 plr-1025-0 pl-md-3 pr-md-3 d-flex ',
|
|
72930
|
-
style: {
|
|
72931
|
-
marginTop: sectionproperties.sectionTitleMarginTop + 'px',
|
|
72932
|
-
marginBottom: sectionproperties.sectionTitleMarginBottom + 'px',
|
|
72933
|
-
paddingLeft: langdetect == 'en' ? sectionproperties.sectionTitleMarginLeft + 'px' : sectionproperties.sectionTitleMarginRight + 'px',
|
|
72934
|
-
paddingRight: langdetect == 'en' ? sectionproperties.sectionTitleMarginRight + 'px' : sectionproperties.sectionTitleMarginLeft + 'px',
|
|
72935
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
72936
|
-
}
|
|
72937
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72938
|
-
"class": "d-flex align-items-center flex-row ",
|
|
72939
|
-
style: {
|
|
72940
|
-
position: 'relative',
|
|
72941
|
-
width: sectionproperties.sectiontitlestyle == 'Line Before Text' ? '100%' : '',
|
|
72942
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
72943
|
-
}
|
|
72944
|
-
}, sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
72945
|
-
"class": sectionStyles.line_left
|
|
72946
|
-
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
72947
|
-
"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 ',
|
|
72948
|
-
style: {}
|
|
72949
|
-
}, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar), sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
72950
|
-
"class": sectionStyles.line_right
|
|
72951
|
-
})))), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73058
|
+
}, sectionproperties.sectiontitleshow == 'Show' && SectionTitleSection(), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
72952
73059
|
"class": ' col-lg-12 col-md-12 col-sm-12 d-flex align-items-center px-sm-3',
|
|
72953
73060
|
style: {
|
|
72954
73061
|
justifyContent: sectionproperties.descriptionCentered == 'Centered' ? 'center' : 'start',
|
|
@@ -73464,35 +73571,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
73464
73571
|
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73465
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 ',
|
|
73466
73573
|
style: {}
|
|
73467
|
-
}, sectionproperties.sectiontitleshow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73468
|
-
"class": "col-lg-12 allcentered p-0",
|
|
73469
|
-
style: {
|
|
73470
|
-
zIndex: 1
|
|
73471
|
-
}
|
|
73472
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73473
|
-
"class": "".concat(generalstyles.sectiontitlecont) + ' col-lg-12 plr-1025-0 pl-md-3 pr-md-3 d-flex ',
|
|
73474
|
-
style: {
|
|
73475
|
-
marginTop: sectionproperties.sectionTitleMarginTop + 'px',
|
|
73476
|
-
marginBottom: sectionproperties.sectionTitleMarginBottom + 'px',
|
|
73477
|
-
paddingLeft: langdetect == 'en' ? sectionproperties.sectionTitleMarginLeft + 'px' : sectionproperties.sectionTitleMarginRight + 'px',
|
|
73478
|
-
paddingRight: langdetect == 'en' ? sectionproperties.sectionTitleMarginRight + 'px' : sectionproperties.sectionTitleMarginLeft + 'px',
|
|
73479
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
73480
|
-
}
|
|
73481
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73482
|
-
"class": "d-flex align-items-center flex-row ",
|
|
73483
|
-
style: {
|
|
73484
|
-
position: 'relative',
|
|
73485
|
-
width: sectionproperties.sectiontitlestyle == 'Line Before Text' ? '100%' : '',
|
|
73486
|
-
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
|
|
73487
|
-
}
|
|
73488
|
-
}, sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
73489
|
-
"class": sectionStyles.line_left
|
|
73490
|
-
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
73491
|
-
"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 ',
|
|
73492
|
-
style: {}
|
|
73493
|
-
}, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar), sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
73494
|
-
"class": sectionStyles.line_right
|
|
73495
|
-
})))), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73574
|
+
}, sectionproperties.sectiontitleshow == 'Show' && SectionTitleSection(), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73496
73575
|
"class": ' col-lg-12 col-md-12 col-sm-12 d-flex align-items-center px-sm-3',
|
|
73497
73576
|
style: {
|
|
73498
73577
|
justifyContent: sectionproperties.descriptionCentered == 'Centered' ? 'center' : 'start',
|
|
@@ -75310,24 +75389,32 @@ var Slideshowzoom = function Slideshowzoom(props) {
|
|
|
75310
75389
|
"class": sectionproperties.text1centered == 'Centered' ? 'col-lg-12 allcentered mb-1' : 'col-lg-12 mb-1 text-start'
|
|
75311
75390
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
75312
75391
|
className: slideshow_styles.text1styles + ' m-0 p-0 wordbreak ',
|
|
75313
|
-
style: {
|
|
75392
|
+
style: {
|
|
75393
|
+
textAlign: sectionproperties.text1centered == 'Centered' ? 'center' : langdetect == 'en' ? 'left' : 'right'
|
|
75394
|
+
}
|
|
75314
75395
|
}, langdetect == 'en' ? item.titleen : item.titlear)), sectionproperties.showanimation == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
75315
75396
|
"class": sectionproperties.text1centered == 'Centered' ? 'col-lg-12 allcentered mb-1' : 'col-lg-12 mb-1 text-start',
|
|
75316
75397
|
"data-aos": 'fade-up'
|
|
75317
75398
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
75318
75399
|
className: slideshow_styles.text1styles + ' m-0 p-0 wordbreak ',
|
|
75319
|
-
style: {
|
|
75400
|
+
style: {
|
|
75401
|
+
textAlign: sectionproperties.text1centered == 'Centered' ? 'center' : langdetect == 'en' ? 'left' : 'right'
|
|
75402
|
+
}
|
|
75320
75403
|
}, langdetect == 'en' ? item.titleen : item.titlear)), sectionproperties.slideshowText2ContentFontSize != 0 && sectionproperties.showanimation == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
75321
75404
|
"class": sectionproperties.text2centered == 'Centered' ? 'col-lg-12 allcentered mb-3' : 'col-lg-12 mb-3 text-start ',
|
|
75322
75405
|
"data-aos": 'fade-up'
|
|
75323
75406
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
75324
75407
|
className: slideshow_styles.text2styles + ' m-0 p-0 wordbreak ',
|
|
75325
|
-
style: {
|
|
75408
|
+
style: {
|
|
75409
|
+
textAlign: sectionproperties.text1centered == 'Centered' ? 'center' : langdetect == 'en' ? 'left' : 'right'
|
|
75410
|
+
}
|
|
75326
75411
|
}, langdetect == 'en' ? item.descriptionen : item.descriptionar)), sectionproperties.slideshowText2ContentFontSize != 0 && sectionproperties.showanimation != 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
75327
75412
|
"class": sectionproperties.text2centered == 'Centered' ? 'col-lg-12 allcentered mb-3' : 'col-lg-12 mb-3 text-start '
|
|
75328
75413
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
75329
75414
|
className: slideshow_styles.text2styles + ' m-0 p-0 wordbreak ',
|
|
75330
|
-
style: {
|
|
75415
|
+
style: {
|
|
75416
|
+
textAlign: sectionproperties.text1centered == 'Centered' ? 'center' : langdetect == 'en' ? 'left' : 'right'
|
|
75417
|
+
}
|
|
75331
75418
|
}, langdetect == 'en' ? item.descriptionen : item.descriptionar)), sectionproperties.generalbtn_show == 'Show' && sectionproperties.showanimation != 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
75332
75419
|
"class":
|
|
75333
75420
|
// sectionproperties.generalbtn_position == 'Centered'
|
|
@@ -77145,6 +77232,10 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77145
77232
|
"class": ' m-0 p-0 wordbreak wordbreak1 ',
|
|
77146
77233
|
onClick: function onClick() {
|
|
77147
77234
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'categories/' + item.categoryid);
|
|
77235
|
+
},
|
|
77236
|
+
style: {
|
|
77237
|
+
fontSize: 15,
|
|
77238
|
+
fontWeight: 600
|
|
77148
77239
|
}
|
|
77149
77240
|
}, langdetect == 'en' ? item.title_en : item.title_ar)), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77150
77241
|
className: 'col-lg-2 col-md-2 col-sm-2 d-flex justify-content-end align-items-center p-0 '
|
|
@@ -77174,6 +77265,10 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77174
77265
|
"class": ' m-0 p-0 wordbreak wordbreak1 ',
|
|
77175
77266
|
onClick: function onClick() {
|
|
77176
77267
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'parentcollections/' + item.parentcollectionid);
|
|
77268
|
+
},
|
|
77269
|
+
style: {
|
|
77270
|
+
fontSize: 15,
|
|
77271
|
+
fontWeight: 600
|
|
77177
77272
|
}
|
|
77178
77273
|
}, langdetect == 'en' ? item.title_en : item.title_ar)), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77179
77274
|
className: 'col-lg-2 col-md-2 col-sm-2 d-flex justify-content-end align-items-center p-0 '
|
|
@@ -77220,6 +77315,10 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77220
77315
|
"class": ' m-0 p-0 wordbreak wordbreak1 ',
|
|
77221
77316
|
onClick: function onClick() {
|
|
77222
77317
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'collections/' + item.collectionid);
|
|
77318
|
+
},
|
|
77319
|
+
style: {
|
|
77320
|
+
fontSize: 14,
|
|
77321
|
+
fontWeight: 500
|
|
77223
77322
|
}
|
|
77224
77323
|
}, langdetect == 'en' ? item.title_en : item.title_ar)), index != pcollarray - 1 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77225
77324
|
className: "col-lg-12 p-0 mt-3 mb-3"
|
|
@@ -77247,7 +77346,9 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77247
77346
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'parentcollections/' + item.parentcollectionid);
|
|
77248
77347
|
},
|
|
77249
77348
|
style: {
|
|
77250
|
-
textAlign: langdetect == 'en' ? 'left' : 'right'
|
|
77349
|
+
textAlign: langdetect == 'en' ? 'left' : 'right',
|
|
77350
|
+
fontSize: 15,
|
|
77351
|
+
fontWeight: 600
|
|
77251
77352
|
}
|
|
77252
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) {
|
|
77253
77354
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
@@ -77258,7 +77359,9 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77258
77359
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'collections/' + item.collectionid);
|
|
77259
77360
|
},
|
|
77260
77361
|
style: {
|
|
77261
|
-
textAlign: langdetect == 'en' ? 'left' : 'right'
|
|
77362
|
+
textAlign: langdetect == 'en' ? 'left' : 'right',
|
|
77363
|
+
fontSize: 14,
|
|
77364
|
+
fontWeight: 400
|
|
77262
77365
|
}
|
|
77263
77366
|
}, langdetect == 'en' ? item.title_en : item.title_ar));
|
|
77264
77367
|
}));
|
|
@@ -77283,7 +77386,9 @@ var ThreeSectionsWithSlideshow = function ThreeSectionsWithSlideshow(props) {
|
|
|
77283
77386
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
77284
77387
|
"class": slideshow_styles.collectionName + ' cursor-pointer wordbreak wordbreak2 mb-1 ',
|
|
77285
77388
|
style: {
|
|
77286
|
-
textAlign: langdetect == 'en' ? 'left' : 'right'
|
|
77389
|
+
textAlign: langdetect == 'en' ? 'left' : 'right',
|
|
77390
|
+
fontSize: 15,
|
|
77391
|
+
fontWeight: 500
|
|
77287
77392
|
}
|
|
77288
77393
|
}, langdetect == 'en' ? item.title_en : item.title_ar)));
|
|
77289
77394
|
}))))))), /*#__PURE__*/React__default["default"].createElement("div", {
|