tabexseriescomponents 0.0.215 → 0.0.217
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 +182 -81
- package/dist/index.esm.js +182 -81
- package/dist/index.umd.js +182 -81
- package/package.json +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -1684,7 +1684,7 @@
|
|
|
1684
1684
|
TabIndicatorProps: {
|
|
1685
1685
|
style: {
|
|
1686
1686
|
background: sectionproperties.activetabbordercolor,
|
|
1687
|
-
width: '50%',
|
|
1687
|
+
// width: '50%',
|
|
1688
1688
|
right: sectionproperties.showfirstpolicy == 'Hide' ? 0 : sectionproperties.showsecondpolicy == 'Hide' ? 0 : '',
|
|
1689
1689
|
margin: sectionproperties.showfirstpolicy == 'Hide' ? 'auto' : sectionproperties.showsecondpolicy == 'Hide' ? 'auto' : ''
|
|
1690
1690
|
}
|
|
@@ -22462,7 +22462,7 @@
|
|
|
22462
22462
|
maxHeight: '100%'
|
|
22463
22463
|
}
|
|
22464
22464
|
}))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22465
|
-
"class": ' col-lg-
|
|
22465
|
+
"class": ' col-lg-7 p-0 d-flex flex-row align-items-center justify-content-start '
|
|
22466
22466
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22467
22467
|
"class": " ".concat(headerstyles$2.nav__item) + 'scrollhorizontal w-100 align-items-center justify-content-start',
|
|
22468
22468
|
style: {
|
|
@@ -22490,7 +22490,7 @@
|
|
|
22490
22490
|
subheadercontentpositionprops: 'start'
|
|
22491
22491
|
}
|
|
22492
22492
|
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22493
|
-
"class": "col-lg-
|
|
22493
|
+
"class": "col-lg-3 p-0 d-flex align-items-center justify-content-end"
|
|
22494
22494
|
}, /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"], null, /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Toggle, null, !authdetailsContext.loggedin && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
22495
22495
|
"class": " ".concat(header_cssstyles.user_btn) + ' d-flex align-items-center justify-content-center ',
|
|
22496
22496
|
style: {
|
|
@@ -22519,7 +22519,10 @@
|
|
|
22519
22519
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
22520
22520
|
"class": header_cssstyles.greetingstyles + ' m-0 p-0 mb-1 '
|
|
22521
22521
|
}, lang.hello, langdetect == 'en' ? ',' : '،'), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
22522
|
-
"class": header_cssstyles.loggedinusername + ' loggedinuserbtn text-overflow m-0 p-0 '
|
|
22522
|
+
"class": header_cssstyles.loggedinusername + ' loggedinuserbtn text-overflow m-0 p-0 ',
|
|
22523
|
+
style: {
|
|
22524
|
+
maxWidth: '100px'
|
|
22525
|
+
}
|
|
22523
22526
|
}, authdetailsContext.customerinfo.name)))), !authdetailsContext.loggedin && /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Menu, null, /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Item, {
|
|
22524
22527
|
"class": "".concat(header_cssstyles.dropdownitem),
|
|
22525
22528
|
onClick: function onClick() {
|
|
@@ -26926,7 +26929,6 @@
|
|
|
26926
26929
|
_useState6 = _slicedToArray__default["default"](_useState5, 2),
|
|
26927
26930
|
logoarrayofobjects = _useState6[0],
|
|
26928
26931
|
setlogoarrayofobjects = _useState6[1];
|
|
26929
|
-
props.actions.history;
|
|
26930
26932
|
var StatePagePropertiesContext = props.actions.StatePagePropertiesContext;
|
|
26931
26933
|
var lang = props.actions.lang;
|
|
26932
26934
|
var langdetect = props.actions.langdetect;
|
|
@@ -30164,6 +30166,18 @@
|
|
|
30164
30166
|
cardobj.productimages = arrayItem.productinfo.productimages;
|
|
30165
30167
|
cardobj.quantity = itemquantity;
|
|
30166
30168
|
cardobj.timestamp = arrayItem.productinfo.timestamp;
|
|
30169
|
+
if (langdetect == 'en') {
|
|
30170
|
+
cardobj.currencyname = fetchAuthorizationQueryContext === null || fetchAuthorizationQueryContext === void 0 ? void 0 : fetchAuthorizationQueryContext.data.data.currencyname_en;
|
|
30171
|
+
} else {
|
|
30172
|
+
cardobj.currencyname = fetchAuthorizationQueryContext === null || fetchAuthorizationQueryContext === void 0 ? void 0 : fetchAuthorizationQueryContext.data.data.currencyname_ar;
|
|
30173
|
+
}
|
|
30174
|
+
if (favoriteprojectscountContext != undefined && favoriteprojectscountContext.length != 0) {
|
|
30175
|
+
favoriteprojectscountContext.forEach(function (favitem, favindex) {
|
|
30176
|
+
if (arrayItem.productinfo.productid == favitem) {
|
|
30177
|
+
cardobj.IsFavExists = true;
|
|
30178
|
+
}
|
|
30179
|
+
});
|
|
30180
|
+
}
|
|
30167
30181
|
if (favoriteprojectscountContext != undefined && favoriteprojectscountContext.length != 0) {
|
|
30168
30182
|
favoriteprojectscountContext.forEach(function (favitem, favindex) {
|
|
30169
30183
|
if (arrayItem.productinfo.productid == favitem) {
|
|
@@ -30320,13 +30334,13 @@
|
|
|
30320
30334
|
color: sectionproperties.noprod_iconcolor
|
|
30321
30335
|
}
|
|
30322
30336
|
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
30337
|
+
"class": "m-0 p-0 mt-2",
|
|
30323
30338
|
style: {
|
|
30324
|
-
fontSize: sectionproperties.noprod_fontSize + 'px',
|
|
30325
30339
|
fontWeight: sectionproperties.noprod_fontWeight,
|
|
30326
|
-
|
|
30327
|
-
|
|
30340
|
+
color: sectionproperties.noprod_color,
|
|
30341
|
+
fontSize: sectionproperties.noprod_fontSize + 'px'
|
|
30328
30342
|
}
|
|
30329
|
-
}, langdetect == 'en' ?
|
|
30343
|
+
}, langdetect == 'en' ? sectionproperties.nocards_content_en : sectionproperties.nocards_content_ar))), cardsarray.length != 0 && StatePagePropertiesContext.pageobj.sections[props.sectionindexprops].childsections.map(function (item, index) {
|
|
30330
30344
|
if (item.tabexsectioninfo != null) {
|
|
30331
30345
|
if (item.sectionstructype == 'child' && TabexSectionsComponentsContext[item.tabexsectioninfo.sectioncompname] != undefined) {
|
|
30332
30346
|
var Sectioncomp = TabexSectionsComponentsContext[item.tabexsectioninfo.sectioncompname];
|
|
@@ -30337,7 +30351,7 @@
|
|
|
30337
30351
|
}, /*#__PURE__*/React__default["default"].createElement(reactHorizontalScrollingMenu.ScrollMenu, {
|
|
30338
30352
|
transitionBehavior: 'auto',
|
|
30339
30353
|
wrapperClassName: '',
|
|
30340
|
-
itemClassName: item.tabexsectioninfo.sectioncompname == 'Productcard6' ? 'scrollmenuclassnameitemProductcard6' : item.tabexsectioninfo.sectioncompname == 'Productcard_with_circularhover' ? 'scrollmenuclassnameitemProductcardcircularhover' : item.tabexsectioninfo.sectioncompname == 'Productcard_with_circularbg' ? 'scrollmenuclassnameitemProductcard_with_circularbg' : item.tabexsectioninfo.sectioncompname == 'Categorycard_with_twolinestransition' ? 'scrollmenuclassnameitemCategorycard_with_twolinestransition' : item.tabexsectioninfo.sectioncompname == 'Productcard_with_slideanimation' ? 'scrollmenuclassnameitemProductcard_with_slideanimation' : item.tabexsectioninfo.sectioncompname == 'Categorycard_withtext' ? 'scrollmenuclassnameitemCategorycard_withtext' : item.tabexsectioninfo.sectioncompname == 'Productcard_animatedbuttons' ? 'scrollmenuclassnameitemProductcard_animatedbuttons' : item.tabexsectioninfo.sectioncompname == 'Productcard_with_variants' ? 'scrollmenuclassnameitemProductcard_with_variants' : item.tabexsectioninfo.sectioncompname == 'Productcarddefault' ? 'scrollmenuclassnameitemProductcarddefault' : item.tabexsectioninfo.sectioncompname == 'Simpleproductcard' ? section_cssstyles.scrollmenuclassnameitemSimpleproductcard + ' scrollmenuclassnameitemSimpleproductcard ' : item.tabexsectioninfo.sectioncompname == 'Categorycard_with_trianglebg' ? 'scrollmenuclassnameitemCategorycard_with_trianglebg' : item.tabexsectioninfo.sectioncompname == 'Productcard_with_textonhover' ? 'scrollmenuclassnameitemProductcard_with_textonhover' : item.tabexsectioninfo.sectioncompname == 'Categorycard_slidebgscaled' ? 'scrollmenuclassnameitemCategorycard_slidebgscaled' : item.tabexsectioninfo.sectioncompname == 'Categorycard_fullimage' ? 'scrollmenuclassnameitemCategorycard_Categorycard_fullimage' : item.tabexsectioninfo.sectioncompname == 'Card20' ? 'scrollmenuclassnameitemCard20' : 'scrollmenuclassnameitem',
|
|
30354
|
+
itemClassName: item.tabexsectioninfo.sectioncompname == 'Productcard6' ? 'scrollmenuclassnameitemProductcard6' : item.tabexsectioninfo.sectioncompname == 'Productcard_with_circularhover' ? 'scrollmenuclassnameitemProductcardcircularhover' : item.tabexsectioninfo.sectioncompname == 'Productcard_with_circularbg' ? 'scrollmenuclassnameitemProductcard_with_circularbg' : item.tabexsectioninfo.sectioncompname == 'Categorycard_with_twolinestransition' ? 'scrollmenuclassnameitemCategorycard_with_twolinestransition' : item.tabexsectioninfo.sectioncompname == 'Productcard_with_slideanimation' ? 'scrollmenuclassnameitemProductcard_with_slideanimation' : item.tabexsectioninfo.sectioncompname == 'Categorycard_withtext' ? 'scrollmenuclassnameitemCategorycard_withtext' : item.tabexsectioninfo.sectioncompname == 'Productcard_animatedbuttons' ? 'scrollmenuclassnameitemProductcard_animatedbuttons' : item.tabexsectioninfo.sectioncompname == 'Productcard_with_variants' ? 'scrollmenuclassnameitemProductcard_with_variants' : item.tabexsectioninfo.sectioncompname == 'Productcarddefault' ? 'scrollmenuclassnameitemProductcarddefault' : item.tabexsectioninfo.sectioncompname == 'Simpleproductcard' ? section_cssstyles.scrollmenuclassnameitemSimpleproductcard + ' scrollmenuclassnameitemSimpleproductcard ' : item.tabexsectioninfo.sectioncompname == 'Categorycard_with_trianglebg' ? 'scrollmenuclassnameitemCategorycard_with_trianglebg' : item.tabexsectioninfo.sectioncompname == 'Productcard_with_textonhover' ? 'scrollmenuclassnameitemProductcard_with_textonhover' : item.tabexsectioninfo.sectioncompname == 'Categorycard_slidebgscaled' ? 'scrollmenuclassnameitemCategorycard_slidebgscaled' : item.tabexsectioninfo.sectioncompname == 'Categorycard_fullimage' ? 'scrollmenuclassnameitemCategorycard_Categorycard_fullimage' : item.tabexsectioninfo.sectioncompname == 'Card20' ? 'scrollmenuclassnameitemCard20' : item.tabexsectioninfo.sectioncompname == 'UpSlideEffectCard' ? 'scrollmenuclassnameitemUpSlideEffectCard' : 'scrollmenuclassnameitem',
|
|
30341
30355
|
scrollContainerClassName: 'scrollmenuclasssubscrollbar'
|
|
30342
30356
|
}, cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
30343
30357
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
@@ -36044,7 +36058,12 @@
|
|
|
36044
36058
|
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr));
|
|
36045
36059
|
};
|
|
36046
36060
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36047
|
-
"class":
|
|
36061
|
+
"class": "w-100 allcentered",
|
|
36062
|
+
style: {
|
|
36063
|
+
background: sectionproperties.backgroundColor
|
|
36064
|
+
}
|
|
36065
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36066
|
+
"class": ' row ml-0 mr-0 d-flex justify-content-between w-md-100 align-items-center ',
|
|
36048
36067
|
style: {
|
|
36049
36068
|
marginTop: sectionproperties.marginTop + 'px',
|
|
36050
36069
|
marginBottom: sectionproperties.marginBottom + 'px',
|
|
@@ -36053,7 +36072,9 @@
|
|
|
36053
36072
|
borderTopRightRadius: langdetect == 'en' ? sectionproperties.borderTopRightRadius + 'px' : sectionproperties.borderTopLeftRadius + 'px',
|
|
36054
36073
|
borderBottomLeftRadius: langdetect == 'en' ? sectionproperties.borderBottomLeftRadius + 'px' : sectionproperties.borderBottomRightRadius + 'px',
|
|
36055
36074
|
borderBottomRightRadius: langdetect == 'en' ? sectionproperties.borderBottomRightRadius + 'px' : sectionproperties.borderBottomLeftRadius + 'px',
|
|
36056
|
-
position: 'relative'
|
|
36075
|
+
position: 'relative',
|
|
36076
|
+
border: sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor,
|
|
36077
|
+
width: sectionproperties.width + 'vw'
|
|
36057
36078
|
}
|
|
36058
36079
|
}, maincontainerarrayofobjs != undefined && (maincontainerarrayofobjs === null || maincontainerarrayofobjs === void 0 ? void 0 : maincontainerarrayofobjs.length) != 0 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36059
36080
|
"class": section_styles.imgcontainer
|
|
@@ -36120,7 +36141,7 @@
|
|
|
36120
36141
|
"class": "col-lg-12 p-0"
|
|
36121
36142
|
}, /*#__PURE__*/React__default["default"].createElement("button", {
|
|
36122
36143
|
"class": "".concat(section_styles.btn)
|
|
36123
|
-
}, langdetect == 'en' ? sectionproperties.generalbtn_content : sectionproperties.slideshow_btn_text_ar)))));
|
|
36144
|
+
}, langdetect == 'en' ? sectionproperties.generalbtn_content : sectionproperties.slideshow_btn_text_ar))))));
|
|
36124
36145
|
};
|
|
36125
36146
|
|
|
36126
36147
|
function ownKeys$Q(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -36259,15 +36280,22 @@
|
|
|
36259
36280
|
};
|
|
36260
36281
|
var Content = function Content() {
|
|
36261
36282
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36262
|
-
"class": "col-lg-6 col-md-12 d-flex justify-content-start h-100 justify-content-md-center
|
|
36283
|
+
"class": "col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center pl-0 pr-0",
|
|
36284
|
+
style: {
|
|
36285
|
+
background: sectionproperties.reservation_bgcolor,
|
|
36286
|
+
alignItems: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : '',
|
|
36287
|
+
paddingTop: sectionproperties.sectiontitleposition == 'Centered' ? 50 : 0,
|
|
36288
|
+
paddingBottom: sectionproperties.sectiontitleposition == 'Centered' ? 50 : 0
|
|
36289
|
+
}
|
|
36263
36290
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36264
|
-
"class":
|
|
36291
|
+
"class": sectionproperties.justifyContentCenter == 'Centered' ? 'row m-0 w-100' : 'row m-0 w-100 mb-auto'
|
|
36265
36292
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36266
|
-
"class": "col-lg-12
|
|
36293
|
+
"class": "col-lg-12 pl-0 pr-0 d-flex justify-content-md-center",
|
|
36267
36294
|
style: {
|
|
36268
36295
|
justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start',
|
|
36269
36296
|
marginBottom: sectionproperties.sectionTitleMarginBottom + 'px',
|
|
36270
|
-
marginTop: sectionproperties.sectionTitleMarginTop + 'px'
|
|
36297
|
+
marginTop: sectionproperties.sectionTitleMarginTop + 'px',
|
|
36298
|
+
alignItems: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : ''
|
|
36271
36299
|
}
|
|
36272
36300
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36273
36301
|
"class": "d-flex align-items-center flex-row d-sm-none mt-sm-2",
|
|
@@ -36347,7 +36375,8 @@
|
|
|
36347
36375
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36348
36376
|
"class": sectionproperties.image_height == 0 ? 'col-lg-6 col-md-12 d-flex justify-content-start justify-content-md-center h-auto p-0' : 'col-lg-6 col-md-12 d-flex justify-content-start justify-content-md-center p-0',
|
|
36349
36377
|
style: {
|
|
36350
|
-
cursor: ((_imagesarray$ = imagesarray[0]) === null || _imagesarray$ === void 0 ? void 0 : _imagesarray$.IsClickable) == 'Yes' ? 'pointer' : 'default'
|
|
36378
|
+
cursor: ((_imagesarray$ = imagesarray[0]) === null || _imagesarray$ === void 0 ? void 0 : _imagesarray$.IsClickable) == 'Yes' ? 'pointer' : 'default',
|
|
36379
|
+
background: sectionproperties.image_bgtransparent == 'Transparent' ? 'transparent' : sectionproperties.image_bgcolor
|
|
36351
36380
|
},
|
|
36352
36381
|
onClick: function onClick() {
|
|
36353
36382
|
var _imagesarray$2;
|
|
@@ -36362,10 +36391,10 @@
|
|
|
36362
36391
|
}
|
|
36363
36392
|
}
|
|
36364
36393
|
}
|
|
36365
|
-
}, /*#__PURE__*/React__default["default"].createElement(imagekitioReact.IKImage, {
|
|
36394
|
+
}, imagesarray.length != 0 && /*#__PURE__*/React__default["default"].createElement(imagekitioReact.IKImage, {
|
|
36366
36395
|
urlEndpoint: IKurlEndpoint,
|
|
36367
36396
|
publicKey: IKpublicKey,
|
|
36368
|
-
path:
|
|
36397
|
+
path: langdetect == 'en' ? '/tr:w-' + sectionproperties.imagetr_w + ',h-' + sectionproperties.imagetr_h + '/' + ((_imagesarray$7 = imagesarray[0]) === null || _imagesarray$7 === void 0 ? void 0 : _imagesarray$7.bgsection_image) : '/tr:w-' + sectionproperties.imagetr_w + ',h-' + sectionproperties.imagetr_h + '/' + ((_imagesarray$8 = imagesarray[0]) === null || _imagesarray$8 === void 0 ? void 0 : _imagesarray$8.bgsection_image_ar),
|
|
36369
36398
|
style: {
|
|
36370
36399
|
width: '100%',
|
|
36371
36400
|
height: sectionproperties.image_height == 0 ? 'auto' : sectionproperties.image_height + 'px',
|
|
@@ -36380,7 +36409,17 @@
|
|
|
36380
36409
|
}));
|
|
36381
36410
|
};
|
|
36382
36411
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36383
|
-
"class": ' row ml-0 mr-0 d-flex justify-content-between align-items-center
|
|
36412
|
+
"class": ' row ml-0 mr-0 d-flex justify-content-between align-items-center '
|
|
36413
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36414
|
+
"class": sectionproperties.card_marginRight != 0 && sectionproperties.card_marginLeft != 0 ? 'col-lg-12 d-flex justify-content-between align-items-center px-1025-1 pl-md-3 pr-md-3 w-md-100' : 'col-lg-12 d-flex justify-content-between align-items-center w-md-100',
|
|
36415
|
+
style: {
|
|
36416
|
+
paddingLeft: langdetect == 'en' ? sectionproperties.card_marginLeft + 'px' : sectionproperties.card_marginRight + 'px',
|
|
36417
|
+
paddingRight: langdetect == 'en' ? sectionproperties.card_marginRight + 'px' : sectionproperties.card_marginLeft + 'px',
|
|
36418
|
+
width: sectionproperties.width + 'vw',
|
|
36419
|
+
background: sectionproperties.backgroundColor
|
|
36420
|
+
}
|
|
36421
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36422
|
+
"class": sectionproperties.paddingLeft != 0 ? 'row m-0 w-100 d-flex justify-content-between px-1025-1 pl-md-3 pr-md-3' : 'row m-0 w-100 d-flex justify-content-between',
|
|
36384
36423
|
style: {
|
|
36385
36424
|
paddingLeft: langdetect == 'en' ? sectionproperties.paddingLeft + 'px' : sectionproperties.paddingRight + 'px',
|
|
36386
36425
|
paddingRight: langdetect == 'en' ? sectionproperties.paddingRight + 'px' : sectionproperties.paddingLeft + 'px',
|
|
@@ -36388,22 +36427,28 @@
|
|
|
36388
36427
|
paddingBottom: sectionproperties.paddingBottom + 'px',
|
|
36389
36428
|
marginTop: sectionproperties.marginTop + 'px',
|
|
36390
36429
|
marginBottom: sectionproperties.marginBottom + 'px',
|
|
36391
|
-
background: sectionproperties.backgroundColor,
|
|
36392
36430
|
borderTopLeftRadius: langdetect == 'en' ? sectionproperties.borderTopLeftRadius + 'px' : sectionproperties.borderTopRightRadius + 'px',
|
|
36393
36431
|
borderTopRightRadius: langdetect == 'en' ? sectionproperties.borderTopRightRadius + 'px' : sectionproperties.borderTopLeftRadius + 'px',
|
|
36394
36432
|
borderBottomLeftRadius: langdetect == 'en' ? sectionproperties.borderBottomLeftRadius + 'px' : sectionproperties.borderBottomRightRadius + 'px',
|
|
36395
|
-
borderBottomRightRadius: langdetect == 'en' ? sectionproperties.borderBottomRightRadius + 'px' : sectionproperties.borderBottomLeftRadius + 'px'
|
|
36396
|
-
width: sectionproperties.width + 'vw'
|
|
36433
|
+
borderBottomRightRadius: langdetect == 'en' ? sectionproperties.borderBottomRightRadius + 'px' : sectionproperties.borderBottomLeftRadius + 'px'
|
|
36397
36434
|
}
|
|
36398
36435
|
}, sectionproperties.sectionstyle == 'Image on right' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36399
|
-
"class": "col-lg-12 p-0"
|
|
36436
|
+
"class": "col-lg-12 p-0 d-flex justify-content-between"
|
|
36400
36437
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36401
|
-
"class": "row m-0 w-100"
|
|
36438
|
+
"class": "row m-0 w-100 d-flex justify-content-between",
|
|
36439
|
+
style: {
|
|
36440
|
+
alignItems: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : '',
|
|
36441
|
+
justifyContent: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : 'start'
|
|
36442
|
+
}
|
|
36402
36443
|
}, Content(), Image())), sectionproperties.sectionstyle != 'Image on right' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36403
36444
|
"class": "col-lg-12 p-0"
|
|
36404
36445
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
36405
|
-
"class": "row m-0 w-100"
|
|
36406
|
-
|
|
36446
|
+
"class": "row m-0 w-100",
|
|
36447
|
+
style: {
|
|
36448
|
+
alignItems: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : '',
|
|
36449
|
+
justifyContent: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : 'start'
|
|
36450
|
+
}
|
|
36451
|
+
}, Image(), Content())))));
|
|
36407
36452
|
};
|
|
36408
36453
|
|
|
36409
36454
|
function ownKeys$P(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -37795,10 +37840,11 @@
|
|
|
37795
37840
|
pcollarray = _useState12[0],
|
|
37796
37841
|
setpcollarray = _useState12[1];
|
|
37797
37842
|
React.useEffect(function () {
|
|
37798
|
-
var _authdetailsContext$i;
|
|
37843
|
+
var _authdetailsContext$i, _authdetailsContext$i2;
|
|
37799
37844
|
var temppcollarray = _toConsumableArray__default["default"](pcollarray);
|
|
37800
|
-
authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.instcategories.forEach(function (arrayItem) {
|
|
37801
|
-
|
|
37845
|
+
authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : (_authdetailsContext$i2 = _authdetailsContext$i.instcategories) === null || _authdetailsContext$i2 === void 0 ? void 0 : _authdetailsContext$i2.forEach(function (arrayItem) {
|
|
37846
|
+
var _arrayItem$parentcoll;
|
|
37847
|
+
arrayItem === null || arrayItem === void 0 ? void 0 : (_arrayItem$parentcoll = arrayItem.parentcolletions) === null || _arrayItem$parentcoll === void 0 ? void 0 : _arrayItem$parentcoll.forEach(function (item) {
|
|
37802
37848
|
temppcollarray.push(item);
|
|
37803
37849
|
});
|
|
37804
37850
|
});
|
|
@@ -37958,7 +38004,7 @@
|
|
|
37958
38004
|
}))));
|
|
37959
38005
|
};
|
|
37960
38006
|
var SlideshowContent = function SlideshowContent() {
|
|
37961
|
-
var _authdetailsContext$
|
|
38007
|
+
var _authdetailsContext$i3, _authdetailsContext$i4, _authdetailsContext$i6, _authdetailsContext$i7, _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i10, _authdetailsContext$i11, _authdetailsContext$i12, _authdetailsContext$i13, _authdetailsContext$i14, _authdetailsContext$i15, _authdetailsContext$i16;
|
|
37962
38008
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
37963
38009
|
"class": "col-lg-12 p-0"
|
|
37964
38010
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
@@ -37985,8 +38031,8 @@
|
|
|
37985
38031
|
height: sectionproperties.height + 'vh',
|
|
37986
38032
|
overflowY: 'scroll'
|
|
37987
38033
|
}
|
|
37988
|
-
}, sectionproperties.fetchparenttype == 'Categories' && (authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$
|
|
37989
|
-
var _authdetailsContext$
|
|
38034
|
+
}, sectionproperties.fetchparenttype == 'Categories' && (authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i3 = authdetailsContext.instinfo) === null || _authdetailsContext$i3 === void 0 ? void 0 : (_authdetailsContext$i4 = _authdetailsContext$i3.instcategories) === null || _authdetailsContext$i4 === void 0 ? void 0 : _authdetailsContext$i4.map(function (item, index) {
|
|
38035
|
+
var _authdetailsContext$i5;
|
|
37990
38036
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
37991
38037
|
"class": slideshow_styles.categoryname + ' row ml-0 mr-0 w-100 cursor-pointer ',
|
|
37992
38038
|
onMouseEnter: function onMouseEnter() {
|
|
@@ -38008,7 +38054,7 @@
|
|
|
38008
38054
|
size: sectionproperties.collectionsectioniconfontsize
|
|
38009
38055
|
}) : /*#__PURE__*/React__default["default"].createElement(BsChevronLeft.BsChevronLeft, {
|
|
38010
38056
|
size: sectionproperties.collectionsectioniconfontsize
|
|
38011
|
-
}))), index != (authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$
|
|
38057
|
+
}))), index != (authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i5 = authdetailsContext.instinfo) === null || _authdetailsContext$i5 === void 0 ? void 0 : _authdetailsContext$i5.instcategories) - 1 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
38012
38058
|
className: "col-lg-12 p-0 mt-3 mb-3"
|
|
38013
38059
|
}, /*#__PURE__*/React__default["default"].createElement("hr", {
|
|
38014
38060
|
"class": "m-0"
|
|
@@ -38042,7 +38088,7 @@
|
|
|
38042
38088
|
"class": "m-0"
|
|
38043
38089
|
})));
|
|
38044
38090
|
}
|
|
38045
|
-
})), sectionproperties.fetchparenttype == 'Collections' && (authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$
|
|
38091
|
+
})), sectionproperties.fetchparenttype == 'Collections' && (authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i6 = authdetailsContext.instinfo) === null || _authdetailsContext$i6 === void 0 ? void 0 : _authdetailsContext$i6.instcollections.map(function (item, index) {
|
|
38046
38092
|
if (item.isshowntocustomers == 1) {
|
|
38047
38093
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
38048
38094
|
"class": slideshow_styles.parentcollection + ' row ml-0 mr-0 w-100 cursor-pointer ',
|
|
@@ -38063,7 +38109,7 @@
|
|
|
38063
38109
|
"class": "m-0"
|
|
38064
38110
|
})));
|
|
38065
38111
|
}
|
|
38066
|
-
}))), sectionproperties.fetchparenttype == 'Categories' && Choosenindex.length != 0 && (authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$
|
|
38112
|
+
}))), sectionproperties.fetchparenttype == 'Categories' && Choosenindex.length != 0 && (authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i7 = authdetailsContext.instinfo) === null || _authdetailsContext$i7 === void 0 ? void 0 : (_authdetailsContext$i8 = _authdetailsContext$i7.instcategories[Choosenindex]) === null || _authdetailsContext$i8 === void 0 ? void 0 : (_authdetailsContext$i9 = _authdetailsContext$i8.parentcolletions) === null || _authdetailsContext$i9 === void 0 ? void 0 : _authdetailsContext$i9.length) != 0 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
38067
38113
|
"class": langdetect == 'en' ? 'cat_dropdown-menu cat_dropdown cat_dropdownen' : 'cat_dropdown-menu cat_dropdown cat_dropdownar',
|
|
38068
38114
|
style: {
|
|
38069
38115
|
minHeight: sectionproperties.height + 'vh'
|
|
@@ -38073,7 +38119,7 @@
|
|
|
38073
38119
|
}
|
|
38074
38120
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
38075
38121
|
"class": "row m-0 w-100"
|
|
38076
|
-
}, authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$
|
|
38122
|
+
}, authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i10 = authdetailsContext.instinfo) === null || _authdetailsContext$i10 === void 0 ? void 0 : (_authdetailsContext$i11 = _authdetailsContext$i10.instcategories[Choosenindex]) === null || _authdetailsContext$i11 === void 0 ? void 0 : (_authdetailsContext$i12 = _authdetailsContext$i11.parentcolletions) === null || _authdetailsContext$i12 === void 0 ? void 0 : _authdetailsContext$i12.map(function (item, index) {
|
|
38077
38123
|
var _item$collections;
|
|
38078
38124
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
38079
38125
|
"class": "col-lg-4 p-0"
|
|
@@ -38108,7 +38154,7 @@
|
|
|
38108
38154
|
}
|
|
38109
38155
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
38110
38156
|
"class": "row m-0 w-100"
|
|
38111
|
-
}, authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$
|
|
38157
|
+
}, authdetailsContext === null || authdetailsContext === void 0 ? void 0 : (_authdetailsContext$i13 = authdetailsContext.instinfo) === null || _authdetailsContext$i13 === void 0 ? void 0 : (_authdetailsContext$i14 = _authdetailsContext$i13.instcategories[0]) === null || _authdetailsContext$i14 === void 0 ? void 0 : (_authdetailsContext$i15 = _authdetailsContext$i14.parentcolletions[Choosenindex]) === null || _authdetailsContext$i15 === void 0 ? void 0 : (_authdetailsContext$i16 = _authdetailsContext$i15.collections) === null || _authdetailsContext$i16 === void 0 ? void 0 : _authdetailsContext$i16.map(function (item, index) {
|
|
38112
38158
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
38113
38159
|
"class": "col-lg-4 p-0",
|
|
38114
38160
|
onClick: function onClick() {
|
|
@@ -39994,7 +40040,7 @@
|
|
|
39994
40040
|
paddingLeft: langdetect == 'en' ? sectionproperties.paddingLeft + 'px' : sectionproperties.paddingRight + 'px',
|
|
39995
40041
|
paddingRight: langdetect == 'en' ? sectionproperties.paddingRight + 'px' : sectionproperties.paddingLeft + 'px'
|
|
39996
40042
|
}
|
|
39997
|
-
}, /*#__PURE__*/React__default["default"].createElement(imagekitioReact.IKImage, {
|
|
40043
|
+
}, item.image != '' && /*#__PURE__*/React__default["default"].createElement(imagekitioReact.IKImage, {
|
|
39998
40044
|
urlEndpoint: IKurlEndpoint,
|
|
39999
40045
|
publicKey: IKpublicKey,
|
|
40000
40046
|
path: '/tr:w-' + sectionproperties.imagetr_w + ',h-' + sectionproperties.imagetr_h + '/' + item.image,
|
|
@@ -40009,7 +40055,21 @@
|
|
|
40009
40055
|
borderBottomRightRadius: langdetect == 'en' ? sectionproperties.image_borderBottomRightRadius + 'px' : sectionproperties.image_borderBottomLeftRadius + 'px'
|
|
40010
40056
|
},
|
|
40011
40057
|
loading: "lazy"
|
|
40012
|
-
}), item.
|
|
40058
|
+
}), item.image == '' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40059
|
+
style: {
|
|
40060
|
+
width: '100%',
|
|
40061
|
+
height: '100%',
|
|
40062
|
+
background: sectionproperties.image_bgtransparent == 'Transparent' ? 'Transparent' : sectionproperties.image_bgcolor,
|
|
40063
|
+
borderTopLeftRadius: langdetect == 'en' ? sectionproperties.image_bordertopleftradius + 'px' : sectionproperties.image_bordertoprightradius + 'px',
|
|
40064
|
+
borderTopRightRadius: langdetect == 'en' ? sectionproperties.image_bordertoprightradius + 'px' : sectionproperties.image_bordertopleftradius + 'px',
|
|
40065
|
+
borderBottomLeftRadius: langdetect == 'en' ? sectionproperties.image_borderBottomLeftRadius + 'px' : sectionproperties.image_borderBottomRightRadius + 'px',
|
|
40066
|
+
borderBottomRightRadius: langdetect == 'en' ? sectionproperties.image_borderBottomRightRadius + 'px' : sectionproperties.image_borderBottomLeftRadius + 'px'
|
|
40067
|
+
}
|
|
40068
|
+
}, /*#__PURE__*/React__default["default"].createElement("i", {
|
|
40069
|
+
"class": "h-100 allcentered text-light"
|
|
40070
|
+
}, /*#__PURE__*/React__default["default"].createElement(FiLayers.FiLayers, {
|
|
40071
|
+
size: 26
|
|
40072
|
+
}))), item.hassale == 1 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40013
40073
|
"class": "".concat(card_cssstyles.badgeStyles) + ' allcentered '
|
|
40014
40074
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
40015
40075
|
"class": "m-0 p-0",
|
|
@@ -40133,14 +40193,14 @@
|
|
|
40133
40193
|
style: {
|
|
40134
40194
|
textAlign: langdetect == 'en' ? 'left' : 'right'
|
|
40135
40195
|
}
|
|
40136
|
-
}, langdetect == 'en' ?
|
|
40196
|
+
}, langdetect == 'en' ? item.currencyname : '', " ", item.hassale == 1 ? item.defaultsaleprice : item.defaultprice, " ", langdetect == 'en' ? '' : item.currencyname, ' '), sectionproperties.prodsalePriceshow == 'Show' && item.hassale == 1 && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
40137
40197
|
"class": "".concat(card_cssstyles.productSalePricestyles)
|
|
40138
40198
|
}, " / "), sectionproperties.prodsalePriceshow == 'Show' && item.hassale == 1 && /*#__PURE__*/React__default["default"].createElement("p", {
|
|
40139
|
-
"class": "".concat(card_cssstyles.productSalePricestyles) + ' linethrough m-0 wordbreak d-flex mt-sm-auto mb-sm-auto
|
|
40199
|
+
"class": "".concat(card_cssstyles.productSalePricestyles) + ' linethrough m-0 wordbreak d-flex mt-sm-auto mb-sm-auto ',
|
|
40140
40200
|
style: {
|
|
40141
40201
|
textAlign: langdetect == 'en' ? 'left' : 'right'
|
|
40142
40202
|
}
|
|
40143
|
-
}, langdetect == 'en' ?
|
|
40203
|
+
}, langdetect == 'en' ? item.currencyname : '', " ", item.defaultprice, " ", langdetect == 'en' ? '' : item.currencyname)))));
|
|
40144
40204
|
};
|
|
40145
40205
|
|
|
40146
40206
|
function ownKeys$A(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -40654,10 +40714,19 @@
|
|
|
40654
40714
|
borderTopRightRadius: langdetect == 'en' ? sectionproperties.borderTopRightRadius + 'px' : sectionproperties.borderTopLeftRadius + 'px',
|
|
40655
40715
|
transform: 'scale(0.9)',
|
|
40656
40716
|
cursor: 'pointer',
|
|
40657
|
-
|
|
40717
|
+
':hover': {
|
|
40658
40718
|
transition: '.3s',
|
|
40659
40719
|
transform: 'scale(1)',
|
|
40660
40720
|
boxShadow: '0px 0px 5px #ECECEC'
|
|
40721
|
+
},
|
|
40722
|
+
':hover .categoryname': {
|
|
40723
|
+
transition: 'all .4s ease',
|
|
40724
|
+
color: sectionproperties.text_secondarycolor
|
|
40725
|
+
},
|
|
40726
|
+
':hover .button_styles': {
|
|
40727
|
+
backgroundColor: sectionproperties.generalbtn_bgColortransparentonhover == 'Transparent' ? 'transparent' : sectionproperties.generalbtn_bgColoronhover,
|
|
40728
|
+
borderColor: sectionproperties.generalbtn_textColoronhover,
|
|
40729
|
+
transition: 'all .4s ease'
|
|
40661
40730
|
}
|
|
40662
40731
|
}),
|
|
40663
40732
|
inner_content: glamor.css({
|
|
@@ -40685,14 +40754,63 @@
|
|
|
40685
40754
|
':hover': {
|
|
40686
40755
|
backgroundColor: sectionproperties.generalbtn_bgColortransparentonhover == 'Transparent' ? 'transparent' : sectionproperties.generalbtn_bgColoronhover,
|
|
40687
40756
|
borderColor: sectionproperties.generalbtn_textColoronhover,
|
|
40688
|
-
transition: '.
|
|
40757
|
+
transition: 'all .4s ease'
|
|
40689
40758
|
}
|
|
40690
40759
|
})
|
|
40691
40760
|
};
|
|
40761
|
+
var CardContent = function CardContent() {
|
|
40762
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40763
|
+
"class": "w-100 h-100",
|
|
40764
|
+
style: {
|
|
40765
|
+
overflow: 'hidden'
|
|
40766
|
+
}
|
|
40767
|
+
}, /*#__PURE__*/React__default["default"].createElement(imagekitioReact.IKImage, {
|
|
40768
|
+
urlEndpoint: IKurlEndpoint,
|
|
40769
|
+
publicKey: IKpublicKey,
|
|
40770
|
+
path: '/tr:w-' + sectionproperties.imagetr_w + ',h-' + sectionproperties.imagetr_h + '/' + item.image,
|
|
40771
|
+
style: {
|
|
40772
|
+
height: '100%',
|
|
40773
|
+
width: '100%',
|
|
40774
|
+
objectFit: sectionproperties.bgcovercontain == 'Cover' ? 'cover' : 'contain'
|
|
40775
|
+
},
|
|
40776
|
+
loading: "lazy"
|
|
40777
|
+
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40778
|
+
"class": "".concat(card_cssstyles.inner_content) + ' row m-0 w-100 align-items-center justify-content-start pl-sm-2 pr-sm-2 '
|
|
40779
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40780
|
+
"class": "col-lg-9 col-md-9 col-sm-9 p-0 h-100 d-flex align-items-center"
|
|
40781
|
+
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
40782
|
+
"class": "".concat(card_cssstyles.categoryname) + ' categoryname wordbreak wordbreak1 m-0 ',
|
|
40783
|
+
style: {
|
|
40784
|
+
textAlign: langdetect == 'en' ? 'left' : 'right'
|
|
40785
|
+
}
|
|
40786
|
+
}, item.name)), sectionproperties.generalbtn_show == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40787
|
+
"class": "col-lg-3 col-md-3 col-sm-3 100 d-flex align-items-center justify-content-end p-0"
|
|
40788
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40789
|
+
"class": "".concat(card_cssstyles.button_styles) + ' button_styles '
|
|
40790
|
+
}, /*#__PURE__*/React__default["default"].createElement("i", {
|
|
40791
|
+
"class": "h-100 d-flex align-items-center justify-content-center"
|
|
40792
|
+
}, langdetect == 'en' ? /*#__PURE__*/React__default["default"].createElement(BsArrowRight.BsArrowRight, {
|
|
40793
|
+
size: sectionproperties.generalbtn_fontsize,
|
|
40794
|
+
style: {
|
|
40795
|
+
color: sectionproperties.generalbtn_textColor,
|
|
40796
|
+
':hover': {
|
|
40797
|
+
color: sectionproperties.generalbtn_textColoronhover
|
|
40798
|
+
}
|
|
40799
|
+
}
|
|
40800
|
+
}) : /*#__PURE__*/React__default["default"].createElement(BsArrowLeft.BsArrowLeft, {
|
|
40801
|
+
size: sectionproperties.generalbtn_fontsize,
|
|
40802
|
+
style: {
|
|
40803
|
+
color: sectionproperties.generalbtn_textColor,
|
|
40804
|
+
':hover': {
|
|
40805
|
+
color: sectionproperties.generalbtn_textColoronhover
|
|
40806
|
+
}
|
|
40807
|
+
}
|
|
40808
|
+
}))))));
|
|
40809
|
+
};
|
|
40692
40810
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40693
40811
|
"class": card_cssstyles.categorycard + ' col-lg-12 p-0 '
|
|
40694
40812
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40695
|
-
"class": "row mt-0 ml-0 mr-0 w-100 align-items-center justify-content-center",
|
|
40813
|
+
"class": "row mt-0 ml-0 mr-0 w-100 align-items-center justify-content-center d-flex d-md-none",
|
|
40696
40814
|
onClick: function onClick() {
|
|
40697
40815
|
if (props.fetchingtypeprops == 'collections') {
|
|
40698
40816
|
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'collections/' + item.collectionid);
|
|
@@ -40710,43 +40828,26 @@
|
|
|
40710
40828
|
borderTopLeftRadius: langdetect == 'en' ? sectionproperties.borderTopLeftRadius + 'px' : sectionproperties.borderTopRightRadius + 'px',
|
|
40711
40829
|
borderTopRightRadius: langdetect == 'en' ? sectionproperties.borderTopRightRadius + 'px' : sectionproperties.borderTopLeftRadius + 'px'
|
|
40712
40830
|
}
|
|
40713
|
-
}, /*#__PURE__*/React__default["default"].createElement(
|
|
40714
|
-
|
|
40715
|
-
|
|
40716
|
-
|
|
40717
|
-
|
|
40718
|
-
|
|
40719
|
-
|
|
40720
|
-
objectFit: 'cover'
|
|
40721
|
-
},
|
|
40722
|
-
loading: "lazy"
|
|
40723
|
-
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40724
|
-
"class": "".concat(card_cssstyles.inner_content) + " row m-0 w-100 align-items-center justify-content-start "
|
|
40725
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40726
|
-
"class": "col-lg-10 p-0 h-100"
|
|
40727
|
-
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
40728
|
-
"class": "".concat(card_cssstyles.categoryname) + ' wordbreak wordbreak1 m-0 '
|
|
40729
|
-
}, item.name)), sectionproperties.generalbtn_show == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40730
|
-
"class": langdetect == 'en' ? "".concat(card_cssstyles.button_styles) + ' ml-auto ' : "".concat(card_cssstyles.button_styles) + ' mr-auto '
|
|
40731
|
-
}, /*#__PURE__*/React__default["default"].createElement("i", {
|
|
40732
|
-
"class": "h-100 d-flex align-items-center justify-content-center"
|
|
40733
|
-
}, langdetect == 'en' ? /*#__PURE__*/React__default["default"].createElement(BsArrowRight.BsArrowRight, {
|
|
40734
|
-
size: sectionproperties.generalbtn_fontsize,
|
|
40735
|
-
style: {
|
|
40736
|
-
color: sectionproperties.generalbtn_textColor,
|
|
40737
|
-
':hover': {
|
|
40738
|
-
color: sectionproperties.generalbtn_textColoronhover
|
|
40831
|
+
}, CardContent()), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40832
|
+
"class": "row mt-0 ml-0 mr-0 w-100 align-items-center justify-content-center d-none d-md-flex",
|
|
40833
|
+
onClick: function onClick() {
|
|
40834
|
+
if (props.fetchingtypeprops == 'collections') {
|
|
40835
|
+
routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, 'collections/' + item.collectionid);
|
|
40836
|
+
} else {
|
|
40837
|
+
routingcountext(StaticPagesLinksContext.productinfo, true, item.productid);
|
|
40739
40838
|
}
|
|
40740
|
-
}
|
|
40741
|
-
}) : /*#__PURE__*/React__default["default"].createElement(BsArrowLeft.BsArrowLeft, {
|
|
40742
|
-
size: sectionproperties.generalbtn_fontsize,
|
|
40839
|
+
},
|
|
40743
40840
|
style: {
|
|
40744
|
-
|
|
40745
|
-
|
|
40746
|
-
|
|
40747
|
-
|
|
40841
|
+
position: 'relative',
|
|
40842
|
+
height: sectionproperties.height_responsive + 'px',
|
|
40843
|
+
border: sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor,
|
|
40844
|
+
backgroundColor: sectionproperties.backgroundColortransparent == 'Transparent' ? 'transparent' : sectionproperties.backgroundColor,
|
|
40845
|
+
borderBottomLeftRadius: langdetect == 'en' ? sectionproperties.borderBottomLeftRadius + 'px' : sectionproperties.borderBottomRightRadius + 'px',
|
|
40846
|
+
borderBottomRightRadius: langdetect == 'en' ? sectionproperties.borderBottomRightRadius + 'px' : sectionproperties.borderBottomLeftRadius + 'px',
|
|
40847
|
+
borderTopLeftRadius: langdetect == 'en' ? sectionproperties.borderTopLeftRadius + 'px' : sectionproperties.borderTopRightRadius + 'px',
|
|
40848
|
+
borderTopRightRadius: langdetect == 'en' ? sectionproperties.borderTopRightRadius + 'px' : sectionproperties.borderTopLeftRadius + 'px'
|
|
40748
40849
|
}
|
|
40749
|
-
})))
|
|
40850
|
+
}, CardContent()));
|
|
40750
40851
|
};
|
|
40751
40852
|
|
|
40752
40853
|
function ownKeys$y(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|