tabexseriescomponents 0.2.859 → 0.2.861
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 +78 -47
- package/dist/index.esm.js +78 -47
- package/dist/index.umd.js +78 -47
- package/package.json +1 -1
- package/yarn-error.log +3 -2
package/dist/index.cjs.js
CHANGED
|
@@ -5549,7 +5549,7 @@ var Serviceinfotabs = function Serviceinfotabs(props) {
|
|
|
5549
5549
|
if (minutes_Active_days_array != undefined && minutes_Active_days_array != null && minutes_Active_days_array.length != 0) {
|
|
5550
5550
|
var dayNameToNumber = {
|
|
5551
5551
|
Sun: 0,
|
|
5552
|
-
|
|
5552
|
+
Mon: 1,
|
|
5553
5553
|
Tues: 2,
|
|
5554
5554
|
Wednes: 3,
|
|
5555
5555
|
Thurs: 4,
|
|
@@ -12417,7 +12417,7 @@ var Checkout = function Checkout(props) {
|
|
|
12417
12417
|
var _ref = _asyncToGenerator__default["default"](/*#__PURE__*/_regeneratorRuntime__default["default"].mark(function _callee() {
|
|
12418
12418
|
var _fetchcustomercartQue20, _fetchcustomercartQue21, _fetchcustomercartQue22, _fetchcustomercartQue23, _fetchcustomercartQue24, _fetchcustomercartQue25, _fetchcustomercartQue26, _fetchcustomercartQue27, _fetchcustomercartQue28, _fetchcustomercartQue29, _fetchcustomercartQue30;
|
|
12419
12419
|
var OrderExtraFieldsToBeSentArr, utmSource, utmSourceLocalStorage;
|
|
12420
|
-
return _regeneratorRuntime__default["default"].wrap(function
|
|
12420
|
+
return _regeneratorRuntime__default["default"].wrap(function (_context) {
|
|
12421
12421
|
while (1) switch (_context.prev = _context.next) {
|
|
12422
12422
|
case 0:
|
|
12423
12423
|
// var temppayload = fetchcustomercartQueryContext?.data?.data?.customercart;
|
|
@@ -12467,7 +12467,7 @@ var Checkout = function Checkout(props) {
|
|
|
12467
12467
|
}
|
|
12468
12468
|
}
|
|
12469
12469
|
});
|
|
12470
|
-
case
|
|
12470
|
+
case 1:
|
|
12471
12471
|
case "end":
|
|
12472
12472
|
return _context.stop();
|
|
12473
12473
|
}
|
|
@@ -16751,29 +16751,44 @@ var CartSlider = function CartSlider(props) {
|
|
|
16751
16751
|
var quantitystepincrearse = 1;
|
|
16752
16752
|
var quantity = parseFloat(item.quantity);
|
|
16753
16753
|
if ((item === null || item === void 0 || (_item$productinfo2 = item.productinfo) === null || _item$productinfo2 === void 0 ? void 0 : _item$productinfo2.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo3 = item.productinfo) === null || _item$productinfo3 === void 0 ? void 0 : _item$productinfo3.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo4 = item.productinfo) === null || _item$productinfo4 === void 0 ? void 0 : _item$productinfo4.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo5 = item.productinfo) === null || _item$productinfo5 === void 0 ? void 0 : _item$productinfo5.quantitystepincrearse) != '') {
|
|
16754
|
-
|
|
16755
|
-
|
|
16754
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16755
|
+
var _item$productinfo6;
|
|
16756
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo6 = item.productinfo) === null || _item$productinfo6 === void 0 ? void 0 : _item$productinfo6.quantitystepincrearse);
|
|
16757
|
+
} else {
|
|
16758
|
+
var _item$productinfo7;
|
|
16759
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo7 = item.productinfo) === null || _item$productinfo7 === void 0 ? void 0 : _item$productinfo7.quantitystepincrearse);
|
|
16760
|
+
}
|
|
16756
16761
|
}
|
|
16757
16762
|
quantity = quantity - quantitystepincrearse;
|
|
16758
|
-
|
|
16759
|
-
|
|
16760
|
-
|
|
16763
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16764
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16765
|
+
} else {
|
|
16766
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16767
|
+
}
|
|
16761
16768
|
}
|
|
16762
16769
|
}, /*#__PURE__*/React__default["default"].createElement(FiMinus.FiMinus, {
|
|
16763
16770
|
size: sectionproperties.remove_quantitybtn_textfontsize
|
|
16764
16771
|
})), langdetect == 'ar' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
16765
16772
|
className: "".concat(cart_cssstyles.add_quantitybtn_icon_container) + ' m-1 ',
|
|
16766
16773
|
onClick: function onClick() {
|
|
16767
|
-
var _item$
|
|
16774
|
+
var _item$productinfo8, _item$productinfo9, _item$productinfo0, _item$productinfo1;
|
|
16768
16775
|
var quantitystepincrearse = 1;
|
|
16769
16776
|
var quantity = parseFloat(item.quantity);
|
|
16770
|
-
if ((item === null || item === void 0 || (_item$
|
|
16771
|
-
|
|
16772
|
-
|
|
16777
|
+
if ((item === null || item === void 0 || (_item$productinfo8 = item.productinfo) === null || _item$productinfo8 === void 0 ? void 0 : _item$productinfo8.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo9 = item.productinfo) === null || _item$productinfo9 === void 0 ? void 0 : _item$productinfo9.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo0 = item.productinfo) === null || _item$productinfo0 === void 0 ? void 0 : _item$productinfo0.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo1 = item.productinfo) === null || _item$productinfo1 === void 0 ? void 0 : _item$productinfo1.quantitystepincrearse) != '') {
|
|
16778
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16779
|
+
var _item$productinfo10;
|
|
16780
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo10 = item.productinfo) === null || _item$productinfo10 === void 0 ? void 0 : _item$productinfo10.quantitystepincrearse);
|
|
16781
|
+
} else {
|
|
16782
|
+
var _item$productinfo11;
|
|
16783
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo11 = item.productinfo) === null || _item$productinfo11 === void 0 ? void 0 : _item$productinfo11.quantitystepincrearse);
|
|
16784
|
+
}
|
|
16773
16785
|
}
|
|
16774
16786
|
quantity = quantity + quantitystepincrearse;
|
|
16775
|
-
|
|
16776
|
-
|
|
16787
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16788
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16789
|
+
} else {
|
|
16790
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16791
|
+
}
|
|
16777
16792
|
}
|
|
16778
16793
|
}, /*#__PURE__*/React__default["default"].createElement(FiPlus.FiPlus, {
|
|
16779
16794
|
size: sectionproperties.add_quantitybtn_textfontsize
|
|
@@ -16785,31 +16800,48 @@ var CartSlider = function CartSlider(props) {
|
|
|
16785
16800
|
}, item.quantity), langdetect == 'en' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
16786
16801
|
className: "".concat(cart_cssstyles.add_quantitybtn_icon_container) + ' m-1 ',
|
|
16787
16802
|
onClick: function onClick() {
|
|
16788
|
-
var _item$
|
|
16803
|
+
var _item$productinfo12, _item$productinfo13, _item$productinfo14, _item$productinfo15;
|
|
16789
16804
|
var quantitystepincrearse = 1;
|
|
16790
16805
|
var quantity = parseFloat(item.quantity);
|
|
16791
|
-
if ((item === null || item === void 0 || (_item$
|
|
16792
|
-
|
|
16793
|
-
|
|
16806
|
+
if ((item === null || item === void 0 || (_item$productinfo12 = item.productinfo) === null || _item$productinfo12 === void 0 ? void 0 : _item$productinfo12.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo13 = item.productinfo) === null || _item$productinfo13 === void 0 ? void 0 : _item$productinfo13.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo14 = item.productinfo) === null || _item$productinfo14 === void 0 ? void 0 : _item$productinfo14.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo15 = item.productinfo) === null || _item$productinfo15 === void 0 ? void 0 : _item$productinfo15.quantitystepincrearse) != '') {
|
|
16807
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16808
|
+
var _item$productinfo16;
|
|
16809
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo16 = item.productinfo) === null || _item$productinfo16 === void 0 ? void 0 : _item$productinfo16.quantitystepincrearse);
|
|
16810
|
+
} else {
|
|
16811
|
+
var _item$productinfo17;
|
|
16812
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo17 = item.productinfo) === null || _item$productinfo17 === void 0 ? void 0 : _item$productinfo17.quantitystepincrearse);
|
|
16813
|
+
}
|
|
16794
16814
|
}
|
|
16795
16815
|
quantity = quantity + quantitystepincrearse;
|
|
16796
|
-
|
|
16797
|
-
|
|
16816
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16817
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16818
|
+
} else {
|
|
16819
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16820
|
+
}
|
|
16798
16821
|
}
|
|
16799
16822
|
}, /*#__PURE__*/React__default["default"].createElement(FiPlus.FiPlus, {
|
|
16800
16823
|
size: sectionproperties.add_quantitybtn_textfontsize
|
|
16801
16824
|
})), langdetect == 'ar' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
16802
16825
|
className: "".concat(cart_cssstyles.minus_quantitybtn_icon_container) + ' m-1 ',
|
|
16803
16826
|
onClick: function onClick() {
|
|
16804
|
-
var _item$
|
|
16827
|
+
var _item$productinfo18, _item$productinfo19, _item$productinfo20, _item$productinfo21;
|
|
16805
16828
|
var quantitystepincrearse = 1;
|
|
16806
16829
|
var quantity = parseFloat(item.quantity);
|
|
16807
|
-
if ((item === null || item === void 0 || (_item$
|
|
16808
|
-
|
|
16809
|
-
|
|
16830
|
+
if ((item === null || item === void 0 || (_item$productinfo18 = item.productinfo) === null || _item$productinfo18 === void 0 ? void 0 : _item$productinfo18.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo19 = item.productinfo) === null || _item$productinfo19 === void 0 ? void 0 : _item$productinfo19.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo20 = item.productinfo) === null || _item$productinfo20 === void 0 ? void 0 : _item$productinfo20.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo21 = item.productinfo) === null || _item$productinfo21 === void 0 ? void 0 : _item$productinfo21.quantitystepincrearse) != '') {
|
|
16831
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16832
|
+
var _item$productinfo22;
|
|
16833
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo22 = item.productinfo) === null || _item$productinfo22 === void 0 ? void 0 : _item$productinfo22.quantitystepincrearse);
|
|
16834
|
+
} else {
|
|
16835
|
+
var _item$productinfo23;
|
|
16836
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo23 = item.productinfo) === null || _item$productinfo23 === void 0 ? void 0 : _item$productinfo23.quantitystepincrearse);
|
|
16837
|
+
}
|
|
16838
|
+
}
|
|
16839
|
+
quantity = quantity - quantitystepincrearse;
|
|
16840
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16841
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16842
|
+
} else {
|
|
16843
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16810
16844
|
}
|
|
16811
|
-
quantity = quantity - quantitystepincrearse; // ChangeCartItemQuantityContext(item, parseInt(parseInt(item.quantity) - 1));
|
|
16812
|
-
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16813
16845
|
}
|
|
16814
16846
|
}, /*#__PURE__*/React__default["default"].createElement(FiMinus.FiMinus, {
|
|
16815
16847
|
size: sectionproperties.remove_quantitybtn_textfontsize
|
|
@@ -69909,7 +69941,7 @@ var Servicesection = function Servicesection(props) {
|
|
|
69909
69941
|
function ownKeys$V(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; }
|
|
69910
69942
|
function _objectSpread$V(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$V(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$V(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
69911
69943
|
var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
69912
|
-
var _maincontainerarrayof, _maincontainerarrayof2;
|
|
69944
|
+
var _authdetailsContext$i, _maincontainerarrayof, _maincontainerarrayof2;
|
|
69913
69945
|
var _useState = React.useState(''),
|
|
69914
69946
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
69915
69947
|
sectionproperties = _useState2[0],
|
|
@@ -70080,6 +70112,10 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70080
70112
|
':hover .text1Styles': {
|
|
70081
70113
|
transition: '.3s',
|
|
70082
70114
|
color: sectionproperties.text1secondarycolor
|
|
70115
|
+
},
|
|
70116
|
+
':hover': {
|
|
70117
|
+
transform: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.contactinfo.instid) == '6807d313bae63' ? 'scale(1.05)' : '',
|
|
70118
|
+
transition: '.3s ease-in-out'
|
|
70083
70119
|
}
|
|
70084
70120
|
}),
|
|
70085
70121
|
btnstyles: glamor.css({
|
|
@@ -70195,7 +70231,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70195
70231
|
"class": sectionproperties.descFontFamily == 'Pacifico' ? sectionStyles.descriptioncont + ' PacificoFont m-0 p-0 wordbreak ' : sectionproperties.descFontFamily == 'Playfair' ? sectionStyles.descriptioncont + ' PlayfairFont m-0 p-0 wordbreak ' : sectionproperties.descFontFamily == 'Great Vibes' ? sectionStyles.descriptioncont + ' GreatvibesFont m-0 p-0 wordbreak ' : sectionproperties.descFontFamily == 'Quicksand' ? sectionStyles.descriptioncont + ' QuicksandFont m-0 p-0 wordbreak' : sectionStyles.descriptioncont + ' m-0 p-0 wordbreak',
|
|
70196
70232
|
style: {}
|
|
70197
70233
|
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr)), cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70198
|
-
var _authdetailsContext$
|
|
70234
|
+
var _authdetailsContext$i2, _authdetailsContext$i3;
|
|
70199
70235
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70200
70236
|
// class={
|
|
70201
70237
|
// sectionproperties.numofcols == '2'
|
|
@@ -70215,15 +70251,9 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70215
70251
|
paddingRight: sectionproperties.marginhorizontal + 'px'
|
|
70216
70252
|
}
|
|
70217
70253
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70218
|
-
// class={
|
|
70219
|
-
// sectionproperties.innersectionbordertype != 'All'
|
|
70220
|
-
// ? sectionStyles.cardContainer + ' row m-0 w-100 mb-auto border-md-none '
|
|
70221
|
-
// : sectionStyles.cardContainer + ' row m-0 w-100 mb-auto '
|
|
70222
|
-
// }
|
|
70223
70254
|
"class": sectionproperties.innersectionbordertype != 'All' ? sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto border-md-none ' : sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto ',
|
|
70224
70255
|
style: {
|
|
70225
70256
|
cursor: cardinfoitem.iscardclickable == 'Yes' ? 'pointer' : 'default',
|
|
70226
|
-
// background: sectionproperties.reservation_bgcolor,
|
|
70227
70257
|
background: cardinfoitem.cardbgcolorfromarray,
|
|
70228
70258
|
paddingTop: sectionproperties.reservation_padding_top + 'px',
|
|
70229
70259
|
paddingBottom: sectionproperties.reservation_padding_bottom + 'px',
|
|
@@ -70239,7 +70269,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70239
70269
|
borderRight: cardinfoindex != cardsarray.length - 1 ? sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'en' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '' : '',
|
|
70240
70270
|
borderLeft: sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'ar' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '',
|
|
70241
70271
|
boxShadow: ' 0 0 10px ' + sectionproperties.innerSectionShadowColor,
|
|
70242
|
-
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70272
|
+
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i2 = authdetailsContext.instinfo) === null || _authdetailsContext$i2 === void 0 ? void 0 : _authdetailsContext$i2.contactinfo.instid) == '66b4a0338cb14' ? '100%' : '',
|
|
70243
70273
|
position: 'relative'
|
|
70244
70274
|
},
|
|
70245
70275
|
onClick: function onClick() {
|
|
@@ -70278,7 +70308,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70278
70308
|
objectFit: 'contain'
|
|
70279
70309
|
}
|
|
70280
70310
|
}))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70281
|
-
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70311
|
+
"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 ' : sectionStyles.icontxtcont + ' row m-0 w-100 allcentered ',
|
|
70282
70312
|
style: {}
|
|
70283
70313
|
}, sectionproperties.showrating == 'Show' && cardinfoitem.ratingnumber != null && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70284
70314
|
"class": "col-lg-12 allcentered p-0 mb-1"
|
|
@@ -70439,7 +70469,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70439
70469
|
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr)), sectionproperties.view_as_slider_vertical != 'Vertical' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70440
70470
|
"class": ' scrollhorizontal w-100 align-items-center justify-content- '
|
|
70441
70471
|
}, cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70442
|
-
var _authdetailsContext$
|
|
70472
|
+
var _authdetailsContext$i4;
|
|
70443
70473
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70444
70474
|
"class": 'w-sm-85 scrollhorizontalcard d-flex align-items-center justify-content-center justify-content-md-start ',
|
|
70445
70475
|
style: {
|
|
@@ -70469,7 +70499,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70469
70499
|
borderRight: cardinfoindex != cardsarray.length - 1 ? sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'en' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '' : '',
|
|
70470
70500
|
borderLeft: sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'ar' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '',
|
|
70471
70501
|
boxShadow: ' 0 0 10px ' + sectionproperties.innerSectionShadowColor,
|
|
70472
|
-
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70502
|
+
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i4 = authdetailsContext.instinfo) === null || _authdetailsContext$i4 === void 0 ? void 0 : _authdetailsContext$i4.contactinfo.instid) == '66b4a0338cb14' ? '100%' : ''
|
|
70473
70503
|
},
|
|
70474
70504
|
onClick: function onClick() {
|
|
70475
70505
|
// if (cardinfoitem.iscardclickable == 'Yes') {
|
|
@@ -70603,7 +70633,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70603
70633
|
justifyContent: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : 'start'
|
|
70604
70634
|
}
|
|
70605
70635
|
}, sectionproperties.flippingcards == 'No' && cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70606
|
-
var _authdetailsContext$
|
|
70636
|
+
var _authdetailsContext$i5, _authdetailsContext$i6, _authdetailsContext$i7, _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i0;
|
|
70607
70637
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70608
70638
|
// class={
|
|
70609
70639
|
// sectionproperties.numofcols == '2'
|
|
@@ -70617,7 +70647,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70617
70647
|
// }
|
|
70618
70648
|
"class":
|
|
70619
70649
|
// sectionproperties.evencards
|
|
70620
|
-
(authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70650
|
+
(authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i5 = authdetailsContext.instinfo) === null || _authdetailsContext$i5 === void 0 ? void 0 : _authdetailsContext$i5.instid) == '6762e6ec9e9f8' ? sectionproperties.numofcols == '2' ? ' h-100 h-md-auto col-lg-6 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '3' ? ' h-100 h-md-auto col-lg-4 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '6' ? ' h-100 h-md-auto col-lg-2 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : ' h-100 h-md-auto col-lg-3 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '2' ? ' h-md-auto col-lg-6 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '3' ? ' h-md-auto col-lg-4 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '6' ? ' h-md-auto col-lg-2 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : ' h-md-auto col-lg-3 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp,
|
|
70621
70651
|
style: {
|
|
70622
70652
|
zIndex: 2,
|
|
70623
70653
|
paddingLeft: sectionproperties.marginhorizontal + 'px',
|
|
@@ -70630,7 +70660,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70630
70660
|
// ? sectionStyles.cardContainer + ' row m-0 w-100 mb-auto border-md-none '
|
|
70631
70661
|
// : sectionStyles.cardContainer + ' row m-0 w-100 mb-auto '
|
|
70632
70662
|
// }
|
|
70633
|
-
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70663
|
+
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i6 = authdetailsContext.instinfo) === null || _authdetailsContext$i6 === void 0 ? void 0 : _authdetailsContext$i6.contactinfo.instid) == '67cd78deecff3' ? sectionproperties.innersectionbordertype != 'All' ? sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto border-md-none ' : sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto ' : sectionproperties.innersectionbordertype != 'All' ? sectionStyles.cardContainer + ' h-100 h-md-auto row m-0 w-100 mb-auto border-md-none ' : sectionStyles.cardContainer + ' h-100 h-md-auto row m-0 w-100 mb-auto ',
|
|
70634
70664
|
style: {
|
|
70635
70665
|
cursor: cardinfoitem.iscardclickable == 'Yes' ? 'pointer' : 'default',
|
|
70636
70666
|
// background: sectionproperties.reservation_bgcolor,
|
|
@@ -70649,7 +70679,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70649
70679
|
borderRight: cardinfoindex != cardsarray.length - 1 ? sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'en' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '' : '',
|
|
70650
70680
|
borderLeft: sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'ar' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '',
|
|
70651
70681
|
boxShadow: ' 0 0 10px ' + sectionproperties.innerSectionShadowColor,
|
|
70652
|
-
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70682
|
+
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i7 = authdetailsContext.instinfo) === null || _authdetailsContext$i7 === void 0 ? void 0 : _authdetailsContext$i7.contactinfo.instid) == '66b4a0338cb14' ? '100%' : ''
|
|
70653
70683
|
},
|
|
70654
70684
|
onClick: function onClick() {
|
|
70655
70685
|
// if (cardinfoitem.iscardclickable == 'Yes') {
|
|
@@ -70665,7 +70695,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70665
70695
|
}
|
|
70666
70696
|
}
|
|
70667
70697
|
}, sectionproperties.imageposition == 'Top' && sectionproperties.image_width != 0 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70668
|
-
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70698
|
+
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i8 = authdetailsContext.instinfo) === null || _authdetailsContext$i8 === void 0 ? void 0 : _authdetailsContext$i8.contactinfo.instid) == '67cd78deecff3' ? 'col-lg-12 d-flex align-items-center p-0 w-100 ' : 'col-lg-12 d-flex align-items-center p-0 w-100 h-md-100',
|
|
70669
70699
|
style: {
|
|
70670
70700
|
marginBottom: sectionproperties.image_mb + 'px',
|
|
70671
70701
|
justifyContent: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : 'start'
|
|
@@ -70713,7 +70743,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70713
70743
|
}
|
|
70714
70744
|
})),
|
|
70715
70745
|
activeColor: sectionproperties.generalbtn_textColor
|
|
70716
|
-
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70746
|
+
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i9 = authdetailsContext.instinfo) === null || _authdetailsContext$i9 === void 0 ? void 0 : _authdetailsContext$i9.contactinfo.instid) == '67b3592219709' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70717
70747
|
"class": "col-lg-12 d-flex p-0",
|
|
70718
70748
|
style: {
|
|
70719
70749
|
marginBottom: sectionproperties.slideshowText1Content_marginBottom + 'px',
|
|
@@ -70736,7 +70766,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70736
70766
|
fontWeight: sectionproperties.slideshowText1ContentFontWeight,
|
|
70737
70767
|
direction: 'ltr'
|
|
70738
70768
|
}
|
|
70739
|
-
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70769
|
+
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i0 = authdetailsContext.instinfo) === null || _authdetailsContext$i0 === void 0 ? void 0 : _authdetailsContext$i0.contactinfo.instid) != '67b3592219709' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70740
70770
|
"class": "col-lg-12 d-flex p-0",
|
|
70741
70771
|
style: {
|
|
70742
70772
|
marginBottom: sectionproperties.slideshowText1Content_marginBottom + 'px',
|
|
@@ -74854,6 +74884,7 @@ styleInject(css_248z$f);
|
|
|
74854
74884
|
function ownKeys$I(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; }
|
|
74855
74885
|
function _objectSpread$I(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$I(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$I(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
74856
74886
|
var Categorycard_details_onhover = function Categorycard_details_onhover(props) {
|
|
74887
|
+
var _authdetailsContext$i;
|
|
74857
74888
|
var _useState = React.useState(''),
|
|
74858
74889
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
74859
74890
|
sectionproperties = _useState2[0],
|
|
@@ -74885,7 +74916,7 @@ var Categorycard_details_onhover = function Categorycard_details_onhover(props)
|
|
|
74885
74916
|
_useState0 = _slicedToArray__default["default"](_useState9, 2),
|
|
74886
74917
|
Variant_Color_ImageObj = _useState0[0];
|
|
74887
74918
|
_useState0[1];
|
|
74888
|
-
props.actions.authdetailsContext;
|
|
74919
|
+
var authdetailsContext = props.actions.authdetailsContext;
|
|
74889
74920
|
React.useEffect(function () {
|
|
74890
74921
|
var secpropobj = {};
|
|
74891
74922
|
StatePagePropertiesContext.pageobj.sections.forEach(function (sectionitem, sectionindex) {
|
|
@@ -75031,7 +75062,7 @@ var Categorycard_details_onhover = function Categorycard_details_onhover(props)
|
|
|
75031
75062
|
}),
|
|
75032
75063
|
pinfohover: glamor.css({
|
|
75033
75064
|
opacity: 0,
|
|
75034
|
-
background: sectionproperties.backgroundColor,
|
|
75065
|
+
background: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.contactinfo.instid) == '6807d313bae63' ? 'rgb(238,75,36,0.9)' : sectionproperties.backgroundColor,
|
|
75035
75066
|
position: 'absolute',
|
|
75036
75067
|
top: 0,
|
|
75037
75068
|
transition: '.3s'
|
package/dist/index.esm.js
CHANGED
|
@@ -5499,7 +5499,7 @@ var Serviceinfotabs = function Serviceinfotabs(props) {
|
|
|
5499
5499
|
if (minutes_Active_days_array != undefined && minutes_Active_days_array != null && minutes_Active_days_array.length != 0) {
|
|
5500
5500
|
var dayNameToNumber = {
|
|
5501
5501
|
Sun: 0,
|
|
5502
|
-
|
|
5502
|
+
Mon: 1,
|
|
5503
5503
|
Tues: 2,
|
|
5504
5504
|
Wednes: 3,
|
|
5505
5505
|
Thurs: 4,
|
|
@@ -12367,7 +12367,7 @@ var Checkout = function Checkout(props) {
|
|
|
12367
12367
|
var _ref = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
|
|
12368
12368
|
var _fetchcustomercartQue20, _fetchcustomercartQue21, _fetchcustomercartQue22, _fetchcustomercartQue23, _fetchcustomercartQue24, _fetchcustomercartQue25, _fetchcustomercartQue26, _fetchcustomercartQue27, _fetchcustomercartQue28, _fetchcustomercartQue29, _fetchcustomercartQue30;
|
|
12369
12369
|
var OrderExtraFieldsToBeSentArr, utmSource, utmSourceLocalStorage;
|
|
12370
|
-
return _regeneratorRuntime.wrap(function
|
|
12370
|
+
return _regeneratorRuntime.wrap(function (_context) {
|
|
12371
12371
|
while (1) switch (_context.prev = _context.next) {
|
|
12372
12372
|
case 0:
|
|
12373
12373
|
// var temppayload = fetchcustomercartQueryContext?.data?.data?.customercart;
|
|
@@ -12417,7 +12417,7 @@ var Checkout = function Checkout(props) {
|
|
|
12417
12417
|
}
|
|
12418
12418
|
}
|
|
12419
12419
|
});
|
|
12420
|
-
case
|
|
12420
|
+
case 1:
|
|
12421
12421
|
case "end":
|
|
12422
12422
|
return _context.stop();
|
|
12423
12423
|
}
|
|
@@ -16701,29 +16701,44 @@ var CartSlider = function CartSlider(props) {
|
|
|
16701
16701
|
var quantitystepincrearse = 1;
|
|
16702
16702
|
var quantity = parseFloat(item.quantity);
|
|
16703
16703
|
if ((item === null || item === void 0 || (_item$productinfo2 = item.productinfo) === null || _item$productinfo2 === void 0 ? void 0 : _item$productinfo2.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo3 = item.productinfo) === null || _item$productinfo3 === void 0 ? void 0 : _item$productinfo3.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo4 = item.productinfo) === null || _item$productinfo4 === void 0 ? void 0 : _item$productinfo4.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo5 = item.productinfo) === null || _item$productinfo5 === void 0 ? void 0 : _item$productinfo5.quantitystepincrearse) != '') {
|
|
16704
|
-
|
|
16705
|
-
|
|
16704
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16705
|
+
var _item$productinfo6;
|
|
16706
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo6 = item.productinfo) === null || _item$productinfo6 === void 0 ? void 0 : _item$productinfo6.quantitystepincrearse);
|
|
16707
|
+
} else {
|
|
16708
|
+
var _item$productinfo7;
|
|
16709
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo7 = item.productinfo) === null || _item$productinfo7 === void 0 ? void 0 : _item$productinfo7.quantitystepincrearse);
|
|
16710
|
+
}
|
|
16706
16711
|
}
|
|
16707
16712
|
quantity = quantity - quantitystepincrearse;
|
|
16708
|
-
|
|
16709
|
-
|
|
16710
|
-
|
|
16713
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16714
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16715
|
+
} else {
|
|
16716
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16717
|
+
}
|
|
16711
16718
|
}
|
|
16712
16719
|
}, /*#__PURE__*/React.createElement(FiMinus, {
|
|
16713
16720
|
size: sectionproperties.remove_quantitybtn_textfontsize
|
|
16714
16721
|
})), langdetect == 'ar' && /*#__PURE__*/React.createElement("span", {
|
|
16715
16722
|
className: "".concat(cart_cssstyles.add_quantitybtn_icon_container) + ' m-1 ',
|
|
16716
16723
|
onClick: function onClick() {
|
|
16717
|
-
var _item$
|
|
16724
|
+
var _item$productinfo8, _item$productinfo9, _item$productinfo0, _item$productinfo1;
|
|
16718
16725
|
var quantitystepincrearse = 1;
|
|
16719
16726
|
var quantity = parseFloat(item.quantity);
|
|
16720
|
-
if ((item === null || item === void 0 || (_item$
|
|
16721
|
-
|
|
16722
|
-
|
|
16727
|
+
if ((item === null || item === void 0 || (_item$productinfo8 = item.productinfo) === null || _item$productinfo8 === void 0 ? void 0 : _item$productinfo8.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo9 = item.productinfo) === null || _item$productinfo9 === void 0 ? void 0 : _item$productinfo9.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo0 = item.productinfo) === null || _item$productinfo0 === void 0 ? void 0 : _item$productinfo0.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo1 = item.productinfo) === null || _item$productinfo1 === void 0 ? void 0 : _item$productinfo1.quantitystepincrearse) != '') {
|
|
16728
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16729
|
+
var _item$productinfo10;
|
|
16730
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo10 = item.productinfo) === null || _item$productinfo10 === void 0 ? void 0 : _item$productinfo10.quantitystepincrearse);
|
|
16731
|
+
} else {
|
|
16732
|
+
var _item$productinfo11;
|
|
16733
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo11 = item.productinfo) === null || _item$productinfo11 === void 0 ? void 0 : _item$productinfo11.quantitystepincrearse);
|
|
16734
|
+
}
|
|
16723
16735
|
}
|
|
16724
16736
|
quantity = quantity + quantitystepincrearse;
|
|
16725
|
-
|
|
16726
|
-
|
|
16737
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16738
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16739
|
+
} else {
|
|
16740
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16741
|
+
}
|
|
16727
16742
|
}
|
|
16728
16743
|
}, /*#__PURE__*/React.createElement(FiPlus, {
|
|
16729
16744
|
size: sectionproperties.add_quantitybtn_textfontsize
|
|
@@ -16735,31 +16750,48 @@ var CartSlider = function CartSlider(props) {
|
|
|
16735
16750
|
}, item.quantity), langdetect == 'en' && /*#__PURE__*/React.createElement("span", {
|
|
16736
16751
|
className: "".concat(cart_cssstyles.add_quantitybtn_icon_container) + ' m-1 ',
|
|
16737
16752
|
onClick: function onClick() {
|
|
16738
|
-
var _item$
|
|
16753
|
+
var _item$productinfo12, _item$productinfo13, _item$productinfo14, _item$productinfo15;
|
|
16739
16754
|
var quantitystepincrearse = 1;
|
|
16740
16755
|
var quantity = parseFloat(item.quantity);
|
|
16741
|
-
if ((item === null || item === void 0 || (_item$
|
|
16742
|
-
|
|
16743
|
-
|
|
16756
|
+
if ((item === null || item === void 0 || (_item$productinfo12 = item.productinfo) === null || _item$productinfo12 === void 0 ? void 0 : _item$productinfo12.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo13 = item.productinfo) === null || _item$productinfo13 === void 0 ? void 0 : _item$productinfo13.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo14 = item.productinfo) === null || _item$productinfo14 === void 0 ? void 0 : _item$productinfo14.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo15 = item.productinfo) === null || _item$productinfo15 === void 0 ? void 0 : _item$productinfo15.quantitystepincrearse) != '') {
|
|
16757
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16758
|
+
var _item$productinfo16;
|
|
16759
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo16 = item.productinfo) === null || _item$productinfo16 === void 0 ? void 0 : _item$productinfo16.quantitystepincrearse);
|
|
16760
|
+
} else {
|
|
16761
|
+
var _item$productinfo17;
|
|
16762
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo17 = item.productinfo) === null || _item$productinfo17 === void 0 ? void 0 : _item$productinfo17.quantitystepincrearse);
|
|
16763
|
+
}
|
|
16744
16764
|
}
|
|
16745
16765
|
quantity = quantity + quantitystepincrearse;
|
|
16746
|
-
|
|
16747
|
-
|
|
16766
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16767
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16768
|
+
} else {
|
|
16769
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16770
|
+
}
|
|
16748
16771
|
}
|
|
16749
16772
|
}, /*#__PURE__*/React.createElement(FiPlus, {
|
|
16750
16773
|
size: sectionproperties.add_quantitybtn_textfontsize
|
|
16751
16774
|
})), langdetect == 'ar' && /*#__PURE__*/React.createElement("span", {
|
|
16752
16775
|
className: "".concat(cart_cssstyles.minus_quantitybtn_icon_container) + ' m-1 ',
|
|
16753
16776
|
onClick: function onClick() {
|
|
16754
|
-
var _item$
|
|
16777
|
+
var _item$productinfo18, _item$productinfo19, _item$productinfo20, _item$productinfo21;
|
|
16755
16778
|
var quantitystepincrearse = 1;
|
|
16756
16779
|
var quantity = parseFloat(item.quantity);
|
|
16757
|
-
if ((item === null || item === void 0 || (_item$
|
|
16758
|
-
|
|
16759
|
-
|
|
16780
|
+
if ((item === null || item === void 0 || (_item$productinfo18 = item.productinfo) === null || _item$productinfo18 === void 0 ? void 0 : _item$productinfo18.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo19 = item.productinfo) === null || _item$productinfo19 === void 0 ? void 0 : _item$productinfo19.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo20 = item.productinfo) === null || _item$productinfo20 === void 0 ? void 0 : _item$productinfo20.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo21 = item.productinfo) === null || _item$productinfo21 === void 0 ? void 0 : _item$productinfo21.quantitystepincrearse) != '') {
|
|
16781
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16782
|
+
var _item$productinfo22;
|
|
16783
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo22 = item.productinfo) === null || _item$productinfo22 === void 0 ? void 0 : _item$productinfo22.quantitystepincrearse);
|
|
16784
|
+
} else {
|
|
16785
|
+
var _item$productinfo23;
|
|
16786
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo23 = item.productinfo) === null || _item$productinfo23 === void 0 ? void 0 : _item$productinfo23.quantitystepincrearse);
|
|
16787
|
+
}
|
|
16788
|
+
}
|
|
16789
|
+
quantity = quantity - quantitystepincrearse;
|
|
16790
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16791
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16792
|
+
} else {
|
|
16793
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16760
16794
|
}
|
|
16761
|
-
quantity = quantity - quantitystepincrearse; // ChangeCartItemQuantityContext(item, parseInt(parseInt(item.quantity) - 1));
|
|
16762
|
-
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16763
16795
|
}
|
|
16764
16796
|
}, /*#__PURE__*/React.createElement(FiMinus, {
|
|
16765
16797
|
size: sectionproperties.remove_quantitybtn_textfontsize
|
|
@@ -69859,7 +69891,7 @@ var Servicesection = function Servicesection(props) {
|
|
|
69859
69891
|
function ownKeys$V(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; }
|
|
69860
69892
|
function _objectSpread$V(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$V(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$V(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
69861
69893
|
var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
69862
|
-
var _maincontainerarrayof, _maincontainerarrayof2;
|
|
69894
|
+
var _authdetailsContext$i, _maincontainerarrayof, _maincontainerarrayof2;
|
|
69863
69895
|
var _useState = useState(''),
|
|
69864
69896
|
_useState2 = _slicedToArray(_useState, 2),
|
|
69865
69897
|
sectionproperties = _useState2[0],
|
|
@@ -70030,6 +70062,10 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70030
70062
|
':hover .text1Styles': {
|
|
70031
70063
|
transition: '.3s',
|
|
70032
70064
|
color: sectionproperties.text1secondarycolor
|
|
70065
|
+
},
|
|
70066
|
+
':hover': {
|
|
70067
|
+
transform: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.contactinfo.instid) == '6807d313bae63' ? 'scale(1.05)' : '',
|
|
70068
|
+
transition: '.3s ease-in-out'
|
|
70033
70069
|
}
|
|
70034
70070
|
}),
|
|
70035
70071
|
btnstyles: css({
|
|
@@ -70145,7 +70181,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70145
70181
|
"class": sectionproperties.descFontFamily == 'Pacifico' ? sectionStyles.descriptioncont + ' PacificoFont m-0 p-0 wordbreak ' : sectionproperties.descFontFamily == 'Playfair' ? sectionStyles.descriptioncont + ' PlayfairFont m-0 p-0 wordbreak ' : sectionproperties.descFontFamily == 'Great Vibes' ? sectionStyles.descriptioncont + ' GreatvibesFont m-0 p-0 wordbreak ' : sectionproperties.descFontFamily == 'Quicksand' ? sectionStyles.descriptioncont + ' QuicksandFont m-0 p-0 wordbreak' : sectionStyles.descriptioncont + ' m-0 p-0 wordbreak',
|
|
70146
70182
|
style: {}
|
|
70147
70183
|
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr)), cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70148
|
-
var _authdetailsContext$
|
|
70184
|
+
var _authdetailsContext$i2, _authdetailsContext$i3;
|
|
70149
70185
|
return /*#__PURE__*/React.createElement("div", {
|
|
70150
70186
|
// class={
|
|
70151
70187
|
// sectionproperties.numofcols == '2'
|
|
@@ -70165,15 +70201,9 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70165
70201
|
paddingRight: sectionproperties.marginhorizontal + 'px'
|
|
70166
70202
|
}
|
|
70167
70203
|
}, /*#__PURE__*/React.createElement("div", {
|
|
70168
|
-
// class={
|
|
70169
|
-
// sectionproperties.innersectionbordertype != 'All'
|
|
70170
|
-
// ? sectionStyles.cardContainer + ' row m-0 w-100 mb-auto border-md-none '
|
|
70171
|
-
// : sectionStyles.cardContainer + ' row m-0 w-100 mb-auto '
|
|
70172
|
-
// }
|
|
70173
70204
|
"class": sectionproperties.innersectionbordertype != 'All' ? sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto border-md-none ' : sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto ',
|
|
70174
70205
|
style: {
|
|
70175
70206
|
cursor: cardinfoitem.iscardclickable == 'Yes' ? 'pointer' : 'default',
|
|
70176
|
-
// background: sectionproperties.reservation_bgcolor,
|
|
70177
70207
|
background: cardinfoitem.cardbgcolorfromarray,
|
|
70178
70208
|
paddingTop: sectionproperties.reservation_padding_top + 'px',
|
|
70179
70209
|
paddingBottom: sectionproperties.reservation_padding_bottom + 'px',
|
|
@@ -70189,7 +70219,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70189
70219
|
borderRight: cardinfoindex != cardsarray.length - 1 ? sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'en' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '' : '',
|
|
70190
70220
|
borderLeft: sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'ar' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '',
|
|
70191
70221
|
boxShadow: ' 0 0 10px ' + sectionproperties.innerSectionShadowColor,
|
|
70192
|
-
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70222
|
+
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i2 = authdetailsContext.instinfo) === null || _authdetailsContext$i2 === void 0 ? void 0 : _authdetailsContext$i2.contactinfo.instid) == '66b4a0338cb14' ? '100%' : '',
|
|
70193
70223
|
position: 'relative'
|
|
70194
70224
|
},
|
|
70195
70225
|
onClick: function onClick() {
|
|
@@ -70228,7 +70258,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70228
70258
|
objectFit: 'contain'
|
|
70229
70259
|
}
|
|
70230
70260
|
}))), /*#__PURE__*/React.createElement("div", {
|
|
70231
|
-
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70261
|
+
"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 ' : sectionStyles.icontxtcont + ' row m-0 w-100 allcentered ',
|
|
70232
70262
|
style: {}
|
|
70233
70263
|
}, sectionproperties.showrating == 'Show' && cardinfoitem.ratingnumber != null && /*#__PURE__*/React.createElement("div", {
|
|
70234
70264
|
"class": "col-lg-12 allcentered p-0 mb-1"
|
|
@@ -70389,7 +70419,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70389
70419
|
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr)), sectionproperties.view_as_slider_vertical != 'Vertical' && /*#__PURE__*/React.createElement("div", {
|
|
70390
70420
|
"class": ' scrollhorizontal w-100 align-items-center justify-content- '
|
|
70391
70421
|
}, cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70392
|
-
var _authdetailsContext$
|
|
70422
|
+
var _authdetailsContext$i4;
|
|
70393
70423
|
return /*#__PURE__*/React.createElement("div", {
|
|
70394
70424
|
"class": 'w-sm-85 scrollhorizontalcard d-flex align-items-center justify-content-center justify-content-md-start ',
|
|
70395
70425
|
style: {
|
|
@@ -70419,7 +70449,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70419
70449
|
borderRight: cardinfoindex != cardsarray.length - 1 ? sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'en' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '' : '',
|
|
70420
70450
|
borderLeft: sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'ar' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '',
|
|
70421
70451
|
boxShadow: ' 0 0 10px ' + sectionproperties.innerSectionShadowColor,
|
|
70422
|
-
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70452
|
+
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i4 = authdetailsContext.instinfo) === null || _authdetailsContext$i4 === void 0 ? void 0 : _authdetailsContext$i4.contactinfo.instid) == '66b4a0338cb14' ? '100%' : ''
|
|
70423
70453
|
},
|
|
70424
70454
|
onClick: function onClick() {
|
|
70425
70455
|
// if (cardinfoitem.iscardclickable == 'Yes') {
|
|
@@ -70553,7 +70583,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70553
70583
|
justifyContent: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : 'start'
|
|
70554
70584
|
}
|
|
70555
70585
|
}, sectionproperties.flippingcards == 'No' && cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70556
|
-
var _authdetailsContext$
|
|
70586
|
+
var _authdetailsContext$i5, _authdetailsContext$i6, _authdetailsContext$i7, _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i0;
|
|
70557
70587
|
return /*#__PURE__*/React.createElement("div", {
|
|
70558
70588
|
// class={
|
|
70559
70589
|
// sectionproperties.numofcols == '2'
|
|
@@ -70567,7 +70597,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70567
70597
|
// }
|
|
70568
70598
|
"class":
|
|
70569
70599
|
// sectionproperties.evencards
|
|
70570
|
-
(authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70600
|
+
(authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i5 = authdetailsContext.instinfo) === null || _authdetailsContext$i5 === void 0 ? void 0 : _authdetailsContext$i5.instid) == '6762e6ec9e9f8' ? sectionproperties.numofcols == '2' ? ' h-100 h-md-auto col-lg-6 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '3' ? ' h-100 h-md-auto col-lg-4 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '6' ? ' h-100 h-md-auto col-lg-2 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : ' h-100 h-md-auto col-lg-3 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '2' ? ' h-md-auto col-lg-6 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '3' ? ' h-md-auto col-lg-4 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '6' ? ' h-md-auto col-lg-2 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : ' h-md-auto col-lg-3 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp,
|
|
70571
70601
|
style: {
|
|
70572
70602
|
zIndex: 2,
|
|
70573
70603
|
paddingLeft: sectionproperties.marginhorizontal + 'px',
|
|
@@ -70580,7 +70610,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70580
70610
|
// ? sectionStyles.cardContainer + ' row m-0 w-100 mb-auto border-md-none '
|
|
70581
70611
|
// : sectionStyles.cardContainer + ' row m-0 w-100 mb-auto '
|
|
70582
70612
|
// }
|
|
70583
|
-
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70613
|
+
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i6 = authdetailsContext.instinfo) === null || _authdetailsContext$i6 === void 0 ? void 0 : _authdetailsContext$i6.contactinfo.instid) == '67cd78deecff3' ? sectionproperties.innersectionbordertype != 'All' ? sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto border-md-none ' : sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto ' : sectionproperties.innersectionbordertype != 'All' ? sectionStyles.cardContainer + ' h-100 h-md-auto row m-0 w-100 mb-auto border-md-none ' : sectionStyles.cardContainer + ' h-100 h-md-auto row m-0 w-100 mb-auto ',
|
|
70584
70614
|
style: {
|
|
70585
70615
|
cursor: cardinfoitem.iscardclickable == 'Yes' ? 'pointer' : 'default',
|
|
70586
70616
|
// background: sectionproperties.reservation_bgcolor,
|
|
@@ -70599,7 +70629,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70599
70629
|
borderRight: cardinfoindex != cardsarray.length - 1 ? sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'en' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '' : '',
|
|
70600
70630
|
borderLeft: sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'ar' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '',
|
|
70601
70631
|
boxShadow: ' 0 0 10px ' + sectionproperties.innerSectionShadowColor,
|
|
70602
|
-
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70632
|
+
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i7 = authdetailsContext.instinfo) === null || _authdetailsContext$i7 === void 0 ? void 0 : _authdetailsContext$i7.contactinfo.instid) == '66b4a0338cb14' ? '100%' : ''
|
|
70603
70633
|
},
|
|
70604
70634
|
onClick: function onClick() {
|
|
70605
70635
|
// if (cardinfoitem.iscardclickable == 'Yes') {
|
|
@@ -70615,7 +70645,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70615
70645
|
}
|
|
70616
70646
|
}
|
|
70617
70647
|
}, sectionproperties.imageposition == 'Top' && sectionproperties.image_width != 0 && /*#__PURE__*/React.createElement("div", {
|
|
70618
|
-
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70648
|
+
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i8 = authdetailsContext.instinfo) === null || _authdetailsContext$i8 === void 0 ? void 0 : _authdetailsContext$i8.contactinfo.instid) == '67cd78deecff3' ? 'col-lg-12 d-flex align-items-center p-0 w-100 ' : 'col-lg-12 d-flex align-items-center p-0 w-100 h-md-100',
|
|
70619
70649
|
style: {
|
|
70620
70650
|
marginBottom: sectionproperties.image_mb + 'px',
|
|
70621
70651
|
justifyContent: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : 'start'
|
|
@@ -70663,7 +70693,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70663
70693
|
}
|
|
70664
70694
|
})),
|
|
70665
70695
|
activeColor: sectionproperties.generalbtn_textColor
|
|
70666
|
-
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70696
|
+
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i9 = authdetailsContext.instinfo) === null || _authdetailsContext$i9 === void 0 ? void 0 : _authdetailsContext$i9.contactinfo.instid) == '67b3592219709' && /*#__PURE__*/React.createElement("div", {
|
|
70667
70697
|
"class": "col-lg-12 d-flex p-0",
|
|
70668
70698
|
style: {
|
|
70669
70699
|
marginBottom: sectionproperties.slideshowText1Content_marginBottom + 'px',
|
|
@@ -70686,7 +70716,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
|
70686
70716
|
fontWeight: sectionproperties.slideshowText1ContentFontWeight,
|
|
70687
70717
|
direction: 'ltr'
|
|
70688
70718
|
}
|
|
70689
|
-
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70719
|
+
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i0 = authdetailsContext.instinfo) === null || _authdetailsContext$i0 === void 0 ? void 0 : _authdetailsContext$i0.contactinfo.instid) != '67b3592219709' && /*#__PURE__*/React.createElement("div", {
|
|
70690
70720
|
"class": "col-lg-12 d-flex p-0",
|
|
70691
70721
|
style: {
|
|
70692
70722
|
marginBottom: sectionproperties.slideshowText1Content_marginBottom + 'px',
|
|
@@ -74804,6 +74834,7 @@ styleInject(css_248z$f);
|
|
|
74804
74834
|
function ownKeys$I(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; }
|
|
74805
74835
|
function _objectSpread$I(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$I(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$I(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
74806
74836
|
var Categorycard_details_onhover = function Categorycard_details_onhover(props) {
|
|
74837
|
+
var _authdetailsContext$i;
|
|
74807
74838
|
var _useState = useState(''),
|
|
74808
74839
|
_useState2 = _slicedToArray(_useState, 2),
|
|
74809
74840
|
sectionproperties = _useState2[0],
|
|
@@ -74835,7 +74866,7 @@ var Categorycard_details_onhover = function Categorycard_details_onhover(props)
|
|
|
74835
74866
|
_useState0 = _slicedToArray(_useState9, 2),
|
|
74836
74867
|
Variant_Color_ImageObj = _useState0[0];
|
|
74837
74868
|
_useState0[1];
|
|
74838
|
-
props.actions.authdetailsContext;
|
|
74869
|
+
var authdetailsContext = props.actions.authdetailsContext;
|
|
74839
74870
|
useEffect(function () {
|
|
74840
74871
|
var secpropobj = {};
|
|
74841
74872
|
StatePagePropertiesContext.pageobj.sections.forEach(function (sectionitem, sectionindex) {
|
|
@@ -74981,7 +75012,7 @@ var Categorycard_details_onhover = function Categorycard_details_onhover(props)
|
|
|
74981
75012
|
}),
|
|
74982
75013
|
pinfohover: css({
|
|
74983
75014
|
opacity: 0,
|
|
74984
|
-
background: sectionproperties.backgroundColor,
|
|
75015
|
+
background: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.contactinfo.instid) == '6807d313bae63' ? 'rgb(238,75,36,0.9)' : sectionproperties.backgroundColor,
|
|
74985
75016
|
position: 'absolute',
|
|
74986
75017
|
top: 0,
|
|
74987
75018
|
transition: '.3s'
|
package/dist/index.umd.js
CHANGED
|
@@ -5359,7 +5359,7 @@
|
|
|
5359
5359
|
if (minutes_Active_days_array != undefined && minutes_Active_days_array != null && minutes_Active_days_array.length != 0) {
|
|
5360
5360
|
var dayNameToNumber = {
|
|
5361
5361
|
Sun: 0,
|
|
5362
|
-
|
|
5362
|
+
Mon: 1,
|
|
5363
5363
|
Tues: 2,
|
|
5364
5364
|
Wednes: 3,
|
|
5365
5365
|
Thurs: 4,
|
|
@@ -12227,7 +12227,7 @@
|
|
|
12227
12227
|
var _ref = _asyncToGenerator__default["default"](/*#__PURE__*/_regeneratorRuntime__default["default"].mark(function _callee() {
|
|
12228
12228
|
var _fetchcustomercartQue20, _fetchcustomercartQue21, _fetchcustomercartQue22, _fetchcustomercartQue23, _fetchcustomercartQue24, _fetchcustomercartQue25, _fetchcustomercartQue26, _fetchcustomercartQue27, _fetchcustomercartQue28, _fetchcustomercartQue29, _fetchcustomercartQue30;
|
|
12229
12229
|
var OrderExtraFieldsToBeSentArr, utmSource, utmSourceLocalStorage;
|
|
12230
|
-
return _regeneratorRuntime__default["default"].wrap(function
|
|
12230
|
+
return _regeneratorRuntime__default["default"].wrap(function (_context) {
|
|
12231
12231
|
while (1) switch (_context.prev = _context.next) {
|
|
12232
12232
|
case 0:
|
|
12233
12233
|
// var temppayload = fetchcustomercartQueryContext?.data?.data?.customercart;
|
|
@@ -12277,7 +12277,7 @@
|
|
|
12277
12277
|
}
|
|
12278
12278
|
}
|
|
12279
12279
|
});
|
|
12280
|
-
case
|
|
12280
|
+
case 1:
|
|
12281
12281
|
case "end":
|
|
12282
12282
|
return _context.stop();
|
|
12283
12283
|
}
|
|
@@ -16561,29 +16561,44 @@
|
|
|
16561
16561
|
var quantitystepincrearse = 1;
|
|
16562
16562
|
var quantity = parseFloat(item.quantity);
|
|
16563
16563
|
if ((item === null || item === void 0 || (_item$productinfo2 = item.productinfo) === null || _item$productinfo2 === void 0 ? void 0 : _item$productinfo2.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo3 = item.productinfo) === null || _item$productinfo3 === void 0 ? void 0 : _item$productinfo3.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo4 = item.productinfo) === null || _item$productinfo4 === void 0 ? void 0 : _item$productinfo4.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo5 = item.productinfo) === null || _item$productinfo5 === void 0 ? void 0 : _item$productinfo5.quantitystepincrearse) != '') {
|
|
16564
|
-
|
|
16565
|
-
|
|
16564
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16565
|
+
var _item$productinfo6;
|
|
16566
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo6 = item.productinfo) === null || _item$productinfo6 === void 0 ? void 0 : _item$productinfo6.quantitystepincrearse);
|
|
16567
|
+
} else {
|
|
16568
|
+
var _item$productinfo7;
|
|
16569
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo7 = item.productinfo) === null || _item$productinfo7 === void 0 ? void 0 : _item$productinfo7.quantitystepincrearse);
|
|
16570
|
+
}
|
|
16566
16571
|
}
|
|
16567
16572
|
quantity = quantity - quantitystepincrearse;
|
|
16568
|
-
|
|
16569
|
-
|
|
16570
|
-
|
|
16573
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16574
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16575
|
+
} else {
|
|
16576
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16577
|
+
}
|
|
16571
16578
|
}
|
|
16572
16579
|
}, /*#__PURE__*/React__default["default"].createElement(FiMinus.FiMinus, {
|
|
16573
16580
|
size: sectionproperties.remove_quantitybtn_textfontsize
|
|
16574
16581
|
})), langdetect == 'ar' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
16575
16582
|
className: "".concat(cart_cssstyles.add_quantitybtn_icon_container) + ' m-1 ',
|
|
16576
16583
|
onClick: function onClick() {
|
|
16577
|
-
var _item$
|
|
16584
|
+
var _item$productinfo8, _item$productinfo9, _item$productinfo0, _item$productinfo1;
|
|
16578
16585
|
var quantitystepincrearse = 1;
|
|
16579
16586
|
var quantity = parseFloat(item.quantity);
|
|
16580
|
-
if ((item === null || item === void 0 || (_item$
|
|
16581
|
-
|
|
16582
|
-
|
|
16587
|
+
if ((item === null || item === void 0 || (_item$productinfo8 = item.productinfo) === null || _item$productinfo8 === void 0 ? void 0 : _item$productinfo8.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo9 = item.productinfo) === null || _item$productinfo9 === void 0 ? void 0 : _item$productinfo9.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo0 = item.productinfo) === null || _item$productinfo0 === void 0 ? void 0 : _item$productinfo0.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo1 = item.productinfo) === null || _item$productinfo1 === void 0 ? void 0 : _item$productinfo1.quantitystepincrearse) != '') {
|
|
16588
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16589
|
+
var _item$productinfo10;
|
|
16590
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo10 = item.productinfo) === null || _item$productinfo10 === void 0 ? void 0 : _item$productinfo10.quantitystepincrearse);
|
|
16591
|
+
} else {
|
|
16592
|
+
var _item$productinfo11;
|
|
16593
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo11 = item.productinfo) === null || _item$productinfo11 === void 0 ? void 0 : _item$productinfo11.quantitystepincrearse);
|
|
16594
|
+
}
|
|
16583
16595
|
}
|
|
16584
16596
|
quantity = quantity + quantitystepincrearse;
|
|
16585
|
-
|
|
16586
|
-
|
|
16597
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16598
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16599
|
+
} else {
|
|
16600
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16601
|
+
}
|
|
16587
16602
|
}
|
|
16588
16603
|
}, /*#__PURE__*/React__default["default"].createElement(FiPlus.FiPlus, {
|
|
16589
16604
|
size: sectionproperties.add_quantitybtn_textfontsize
|
|
@@ -16595,31 +16610,48 @@
|
|
|
16595
16610
|
}, item.quantity), langdetect == 'en' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
16596
16611
|
className: "".concat(cart_cssstyles.add_quantitybtn_icon_container) + ' m-1 ',
|
|
16597
16612
|
onClick: function onClick() {
|
|
16598
|
-
var _item$
|
|
16613
|
+
var _item$productinfo12, _item$productinfo13, _item$productinfo14, _item$productinfo15;
|
|
16599
16614
|
var quantitystepincrearse = 1;
|
|
16600
16615
|
var quantity = parseFloat(item.quantity);
|
|
16601
|
-
if ((item === null || item === void 0 || (_item$
|
|
16602
|
-
|
|
16603
|
-
|
|
16616
|
+
if ((item === null || item === void 0 || (_item$productinfo12 = item.productinfo) === null || _item$productinfo12 === void 0 ? void 0 : _item$productinfo12.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo13 = item.productinfo) === null || _item$productinfo13 === void 0 ? void 0 : _item$productinfo13.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo14 = item.productinfo) === null || _item$productinfo14 === void 0 ? void 0 : _item$productinfo14.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo15 = item.productinfo) === null || _item$productinfo15 === void 0 ? void 0 : _item$productinfo15.quantitystepincrearse) != '') {
|
|
16617
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16618
|
+
var _item$productinfo16;
|
|
16619
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo16 = item.productinfo) === null || _item$productinfo16 === void 0 ? void 0 : _item$productinfo16.quantitystepincrearse);
|
|
16620
|
+
} else {
|
|
16621
|
+
var _item$productinfo17;
|
|
16622
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo17 = item.productinfo) === null || _item$productinfo17 === void 0 ? void 0 : _item$productinfo17.quantitystepincrearse);
|
|
16623
|
+
}
|
|
16604
16624
|
}
|
|
16605
16625
|
quantity = quantity + quantitystepincrearse;
|
|
16606
|
-
|
|
16607
|
-
|
|
16626
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16627
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16628
|
+
} else {
|
|
16629
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16630
|
+
}
|
|
16608
16631
|
}
|
|
16609
16632
|
}, /*#__PURE__*/React__default["default"].createElement(FiPlus.FiPlus, {
|
|
16610
16633
|
size: sectionproperties.add_quantitybtn_textfontsize
|
|
16611
16634
|
})), langdetect == 'ar' && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
16612
16635
|
className: "".concat(cart_cssstyles.minus_quantitybtn_icon_container) + ' m-1 ',
|
|
16613
16636
|
onClick: function onClick() {
|
|
16614
|
-
var _item$
|
|
16637
|
+
var _item$productinfo18, _item$productinfo19, _item$productinfo20, _item$productinfo21;
|
|
16615
16638
|
var quantitystepincrearse = 1;
|
|
16616
16639
|
var quantity = parseFloat(item.quantity);
|
|
16617
|
-
if ((item === null || item === void 0 || (_item$
|
|
16618
|
-
|
|
16619
|
-
|
|
16640
|
+
if ((item === null || item === void 0 || (_item$productinfo18 = item.productinfo) === null || _item$productinfo18 === void 0 ? void 0 : _item$productinfo18.quantitystepincrearse) != undefined && (item === null || item === void 0 || (_item$productinfo19 = item.productinfo) === null || _item$productinfo19 === void 0 ? void 0 : _item$productinfo19.quantitystepincrearse) != null && (item === null || item === void 0 || (_item$productinfo20 = item.productinfo) === null || _item$productinfo20 === void 0 ? void 0 : _item$productinfo20.quantitystepincrearse) != 1 && (item === null || item === void 0 || (_item$productinfo21 = item.productinfo) === null || _item$productinfo21 === void 0 ? void 0 : _item$productinfo21.quantitystepincrearse) != '') {
|
|
16641
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16642
|
+
var _item$productinfo22;
|
|
16643
|
+
quantitystepincrearse = parseInt(item === null || item === void 0 || (_item$productinfo22 = item.productinfo) === null || _item$productinfo22 === void 0 ? void 0 : _item$productinfo22.quantitystepincrearse);
|
|
16644
|
+
} else {
|
|
16645
|
+
var _item$productinfo23;
|
|
16646
|
+
quantitystepincrearse = parseFloat(item === null || item === void 0 || (_item$productinfo23 = item.productinfo) === null || _item$productinfo23 === void 0 ? void 0 : _item$productinfo23.quantitystepincrearse);
|
|
16647
|
+
}
|
|
16648
|
+
}
|
|
16649
|
+
quantity = quantity - quantitystepincrearse;
|
|
16650
|
+
if (sectionproperties.quantityacceptfloat != 'Accepts decimals') {
|
|
16651
|
+
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16652
|
+
} else {
|
|
16653
|
+
ChangeCartItemQuantityContext(item, parseFloat(quantity).toFixed(3));
|
|
16620
16654
|
}
|
|
16621
|
-
quantity = quantity - quantitystepincrearse; // ChangeCartItemQuantityContext(item, parseInt(parseInt(item.quantity) - 1));
|
|
16622
|
-
ChangeCartItemQuantityContext(item, parseInt(quantity));
|
|
16623
16655
|
}
|
|
16624
16656
|
}, /*#__PURE__*/React__default["default"].createElement(FiMinus.FiMinus, {
|
|
16625
16657
|
size: sectionproperties.remove_quantitybtn_textfontsize
|
|
@@ -69719,7 +69751,7 @@
|
|
|
69719
69751
|
function ownKeys$V(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; }
|
|
69720
69752
|
function _objectSpread$V(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$V(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$V(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
69721
69753
|
var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
|
|
69722
|
-
var _maincontainerarrayof, _maincontainerarrayof2;
|
|
69754
|
+
var _authdetailsContext$i, _maincontainerarrayof, _maincontainerarrayof2;
|
|
69723
69755
|
var _useState = React.useState(''),
|
|
69724
69756
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
69725
69757
|
sectionproperties = _useState2[0],
|
|
@@ -69890,6 +69922,10 @@
|
|
|
69890
69922
|
':hover .text1Styles': {
|
|
69891
69923
|
transition: '.3s',
|
|
69892
69924
|
color: sectionproperties.text1secondarycolor
|
|
69925
|
+
},
|
|
69926
|
+
':hover': {
|
|
69927
|
+
transform: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.contactinfo.instid) == '6807d313bae63' ? 'scale(1.05)' : '',
|
|
69928
|
+
transition: '.3s ease-in-out'
|
|
69893
69929
|
}
|
|
69894
69930
|
}),
|
|
69895
69931
|
btnstyles: glamor.css({
|
|
@@ -70005,7 +70041,7 @@
|
|
|
70005
70041
|
"class": sectionproperties.descFontFamily == 'Pacifico' ? sectionStyles.descriptioncont + ' PacificoFont m-0 p-0 wordbreak ' : sectionproperties.descFontFamily == 'Playfair' ? sectionStyles.descriptioncont + ' PlayfairFont m-0 p-0 wordbreak ' : sectionproperties.descFontFamily == 'Great Vibes' ? sectionStyles.descriptioncont + ' GreatvibesFont m-0 p-0 wordbreak ' : sectionproperties.descFontFamily == 'Quicksand' ? sectionStyles.descriptioncont + ' QuicksandFont m-0 p-0 wordbreak' : sectionStyles.descriptioncont + ' m-0 p-0 wordbreak',
|
|
70006
70042
|
style: {}
|
|
70007
70043
|
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr)), cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70008
|
-
var _authdetailsContext$
|
|
70044
|
+
var _authdetailsContext$i2, _authdetailsContext$i3;
|
|
70009
70045
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70010
70046
|
// class={
|
|
70011
70047
|
// sectionproperties.numofcols == '2'
|
|
@@ -70025,15 +70061,9 @@
|
|
|
70025
70061
|
paddingRight: sectionproperties.marginhorizontal + 'px'
|
|
70026
70062
|
}
|
|
70027
70063
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70028
|
-
// class={
|
|
70029
|
-
// sectionproperties.innersectionbordertype != 'All'
|
|
70030
|
-
// ? sectionStyles.cardContainer + ' row m-0 w-100 mb-auto border-md-none '
|
|
70031
|
-
// : sectionStyles.cardContainer + ' row m-0 w-100 mb-auto '
|
|
70032
|
-
// }
|
|
70033
70064
|
"class": sectionproperties.innersectionbordertype != 'All' ? sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto border-md-none ' : sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto ',
|
|
70034
70065
|
style: {
|
|
70035
70066
|
cursor: cardinfoitem.iscardclickable == 'Yes' ? 'pointer' : 'default',
|
|
70036
|
-
// background: sectionproperties.reservation_bgcolor,
|
|
70037
70067
|
background: cardinfoitem.cardbgcolorfromarray,
|
|
70038
70068
|
paddingTop: sectionproperties.reservation_padding_top + 'px',
|
|
70039
70069
|
paddingBottom: sectionproperties.reservation_padding_bottom + 'px',
|
|
@@ -70049,7 +70079,7 @@
|
|
|
70049
70079
|
borderRight: cardinfoindex != cardsarray.length - 1 ? sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'en' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '' : '',
|
|
70050
70080
|
borderLeft: sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'ar' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '',
|
|
70051
70081
|
boxShadow: ' 0 0 10px ' + sectionproperties.innerSectionShadowColor,
|
|
70052
|
-
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70082
|
+
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i2 = authdetailsContext.instinfo) === null || _authdetailsContext$i2 === void 0 ? void 0 : _authdetailsContext$i2.contactinfo.instid) == '66b4a0338cb14' ? '100%' : '',
|
|
70053
70083
|
position: 'relative'
|
|
70054
70084
|
},
|
|
70055
70085
|
onClick: function onClick() {
|
|
@@ -70088,7 +70118,7 @@
|
|
|
70088
70118
|
objectFit: 'contain'
|
|
70089
70119
|
}
|
|
70090
70120
|
}))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70091
|
-
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70121
|
+
"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 ' : sectionStyles.icontxtcont + ' row m-0 w-100 allcentered ',
|
|
70092
70122
|
style: {}
|
|
70093
70123
|
}, sectionproperties.showrating == 'Show' && cardinfoitem.ratingnumber != null && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70094
70124
|
"class": "col-lg-12 allcentered p-0 mb-1"
|
|
@@ -70249,7 +70279,7 @@
|
|
|
70249
70279
|
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr)), sectionproperties.view_as_slider_vertical != 'Vertical' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70250
70280
|
"class": ' scrollhorizontal w-100 align-items-center justify-content- '
|
|
70251
70281
|
}, cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70252
|
-
var _authdetailsContext$
|
|
70282
|
+
var _authdetailsContext$i4;
|
|
70253
70283
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70254
70284
|
"class": 'w-sm-85 scrollhorizontalcard d-flex align-items-center justify-content-center justify-content-md-start ',
|
|
70255
70285
|
style: {
|
|
@@ -70279,7 +70309,7 @@
|
|
|
70279
70309
|
borderRight: cardinfoindex != cardsarray.length - 1 ? sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'en' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '' : '',
|
|
70280
70310
|
borderLeft: sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'ar' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '',
|
|
70281
70311
|
boxShadow: ' 0 0 10px ' + sectionproperties.innerSectionShadowColor,
|
|
70282
|
-
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70312
|
+
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i4 = authdetailsContext.instinfo) === null || _authdetailsContext$i4 === void 0 ? void 0 : _authdetailsContext$i4.contactinfo.instid) == '66b4a0338cb14' ? '100%' : ''
|
|
70283
70313
|
},
|
|
70284
70314
|
onClick: function onClick() {
|
|
70285
70315
|
// if (cardinfoitem.iscardclickable == 'Yes') {
|
|
@@ -70413,7 +70443,7 @@
|
|
|
70413
70443
|
justifyContent: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : 'start'
|
|
70414
70444
|
}
|
|
70415
70445
|
}, sectionproperties.flippingcards == 'No' && cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70416
|
-
var _authdetailsContext$
|
|
70446
|
+
var _authdetailsContext$i5, _authdetailsContext$i6, _authdetailsContext$i7, _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i0;
|
|
70417
70447
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70418
70448
|
// class={
|
|
70419
70449
|
// sectionproperties.numofcols == '2'
|
|
@@ -70427,7 +70457,7 @@
|
|
|
70427
70457
|
// }
|
|
70428
70458
|
"class":
|
|
70429
70459
|
// sectionproperties.evencards
|
|
70430
|
-
(authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70460
|
+
(authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i5 = authdetailsContext.instinfo) === null || _authdetailsContext$i5 === void 0 ? void 0 : _authdetailsContext$i5.instid) == '6762e6ec9e9f8' ? sectionproperties.numofcols == '2' ? ' h-100 h-md-auto col-lg-6 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '3' ? ' h-100 h-md-auto col-lg-4 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '6' ? ' h-100 h-md-auto col-lg-2 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : ' h-100 h-md-auto col-lg-3 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '2' ? ' h-md-auto col-lg-6 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '3' ? ' h-md-auto col-lg-4 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : sectionproperties.numofcols == '6' ? ' h-md-auto col-lg-2 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp : ' h-md-auto col-lg-3 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start col-sm-' + sectionproperties.numberOfColsverticalresp,
|
|
70431
70461
|
style: {
|
|
70432
70462
|
zIndex: 2,
|
|
70433
70463
|
paddingLeft: sectionproperties.marginhorizontal + 'px',
|
|
@@ -70440,7 +70470,7 @@
|
|
|
70440
70470
|
// ? sectionStyles.cardContainer + ' row m-0 w-100 mb-auto border-md-none '
|
|
70441
70471
|
// : sectionStyles.cardContainer + ' row m-0 w-100 mb-auto '
|
|
70442
70472
|
// }
|
|
70443
|
-
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70473
|
+
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i6 = authdetailsContext.instinfo) === null || _authdetailsContext$i6 === void 0 ? void 0 : _authdetailsContext$i6.contactinfo.instid) == '67cd78deecff3' ? sectionproperties.innersectionbordertype != 'All' ? sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto border-md-none ' : sectionStyles.cardContainer + ' h-100 row m-0 w-100 mb-auto ' : sectionproperties.innersectionbordertype != 'All' ? sectionStyles.cardContainer + ' h-100 h-md-auto row m-0 w-100 mb-auto border-md-none ' : sectionStyles.cardContainer + ' h-100 h-md-auto row m-0 w-100 mb-auto ',
|
|
70444
70474
|
style: {
|
|
70445
70475
|
cursor: cardinfoitem.iscardclickable == 'Yes' ? 'pointer' : 'default',
|
|
70446
70476
|
// background: sectionproperties.reservation_bgcolor,
|
|
@@ -70459,7 +70489,7 @@
|
|
|
70459
70489
|
borderRight: cardinfoindex != cardsarray.length - 1 ? sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'en' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '' : '',
|
|
70460
70490
|
borderLeft: sectionproperties.innersectionbordertype == 'Right' ? langdetect == 'ar' ? sectionproperties.innersectionborderWidth + 'px solid ' + sectionproperties.innersectionborderColor : '' : '',
|
|
70461
70491
|
boxShadow: ' 0 0 10px ' + sectionproperties.innerSectionShadowColor,
|
|
70462
|
-
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70492
|
+
height: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i7 = authdetailsContext.instinfo) === null || _authdetailsContext$i7 === void 0 ? void 0 : _authdetailsContext$i7.contactinfo.instid) == '66b4a0338cb14' ? '100%' : ''
|
|
70463
70493
|
},
|
|
70464
70494
|
onClick: function onClick() {
|
|
70465
70495
|
// if (cardinfoitem.iscardclickable == 'Yes') {
|
|
@@ -70475,7 +70505,7 @@
|
|
|
70475
70505
|
}
|
|
70476
70506
|
}
|
|
70477
70507
|
}, sectionproperties.imageposition == 'Top' && sectionproperties.image_width != 0 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70478
|
-
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70508
|
+
"class": (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i8 = authdetailsContext.instinfo) === null || _authdetailsContext$i8 === void 0 ? void 0 : _authdetailsContext$i8.contactinfo.instid) == '67cd78deecff3' ? 'col-lg-12 d-flex align-items-center p-0 w-100 ' : 'col-lg-12 d-flex align-items-center p-0 w-100 h-md-100',
|
|
70479
70509
|
style: {
|
|
70480
70510
|
marginBottom: sectionproperties.image_mb + 'px',
|
|
70481
70511
|
justifyContent: sectionproperties.justifyContentCenter == 'Centered' ? 'center' : 'start'
|
|
@@ -70523,7 +70553,7 @@
|
|
|
70523
70553
|
}
|
|
70524
70554
|
})),
|
|
70525
70555
|
activeColor: sectionproperties.generalbtn_textColor
|
|
70526
|
-
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70556
|
+
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i9 = authdetailsContext.instinfo) === null || _authdetailsContext$i9 === void 0 ? void 0 : _authdetailsContext$i9.contactinfo.instid) == '67b3592219709' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70527
70557
|
"class": "col-lg-12 d-flex p-0",
|
|
70528
70558
|
style: {
|
|
70529
70559
|
marginBottom: sectionproperties.slideshowText1Content_marginBottom + 'px',
|
|
@@ -70546,7 +70576,7 @@
|
|
|
70546
70576
|
fontWeight: sectionproperties.slideshowText1ContentFontWeight,
|
|
70547
70577
|
direction: 'ltr'
|
|
70548
70578
|
}
|
|
70549
|
-
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
70579
|
+
})), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i0 = authdetailsContext.instinfo) === null || _authdetailsContext$i0 === void 0 ? void 0 : _authdetailsContext$i0.contactinfo.instid) != '67b3592219709' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70550
70580
|
"class": "col-lg-12 d-flex p-0",
|
|
70551
70581
|
style: {
|
|
70552
70582
|
marginBottom: sectionproperties.slideshowText1Content_marginBottom + 'px',
|
|
@@ -74664,6 +74694,7 @@
|
|
|
74664
74694
|
function ownKeys$I(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; }
|
|
74665
74695
|
function _objectSpread$I(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$I(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$I(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
74666
74696
|
var Categorycard_details_onhover = function Categorycard_details_onhover(props) {
|
|
74697
|
+
var _authdetailsContext$i;
|
|
74667
74698
|
var _useState = React.useState(''),
|
|
74668
74699
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
74669
74700
|
sectionproperties = _useState2[0],
|
|
@@ -74695,7 +74726,7 @@
|
|
|
74695
74726
|
_useState0 = _slicedToArray__default["default"](_useState9, 2),
|
|
74696
74727
|
Variant_Color_ImageObj = _useState0[0];
|
|
74697
74728
|
_useState0[1];
|
|
74698
|
-
props.actions.authdetailsContext;
|
|
74729
|
+
var authdetailsContext = props.actions.authdetailsContext;
|
|
74699
74730
|
React.useEffect(function () {
|
|
74700
74731
|
var secpropobj = {};
|
|
74701
74732
|
StatePagePropertiesContext.pageobj.sections.forEach(function (sectionitem, sectionindex) {
|
|
@@ -74841,7 +74872,7 @@
|
|
|
74841
74872
|
}),
|
|
74842
74873
|
pinfohover: glamor.css({
|
|
74843
74874
|
opacity: 0,
|
|
74844
|
-
background: sectionproperties.backgroundColor,
|
|
74875
|
+
background: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.contactinfo.instid) == '6807d313bae63' ? 'rgb(238,75,36,0.9)' : sectionproperties.backgroundColor,
|
|
74845
74876
|
position: 'absolute',
|
|
74846
74877
|
top: 0,
|
|
74847
74878
|
transition: '.3s'
|
package/package.json
CHANGED
package/yarn-error.log
CHANGED
|
@@ -14,12 +14,12 @@ Platform:
|
|
|
14
14
|
win32 x64
|
|
15
15
|
|
|
16
16
|
Trace:
|
|
17
|
-
Error: ENOSPC: no space left on device, copyfile 'C:\Users\Lenovo\AppData\Local\Yarn\Cache\v6\npm-@
|
|
17
|
+
Error: ENOSPC: no space left on device, copyfile 'C:\Users\Lenovo\AppData\Local\Yarn\Cache\v6\npm-@mui-material-5.17.1-596f542a51fc74db75da2df66565b4874ce4049d-integrity\node_modules\@mui\material\node\TableRow\tableRowClasses.js' -> 'C:\tabexseries\tabex series projects\tabexseriescomponents-main\node_modules\@mui\material\node\TableRow\tableRowClasses.js'
|
|
18
18
|
|
|
19
19
|
npm manifest:
|
|
20
20
|
{
|
|
21
21
|
"name": "tabexseriescomponents",
|
|
22
|
-
"version": "0.2.
|
|
22
|
+
"version": "0.2.859",
|
|
23
23
|
"type": "module",
|
|
24
24
|
"description": "your description",
|
|
25
25
|
"main": "dist/index.cjs.js",
|
|
@@ -52,6 +52,7 @@ npm manifest:
|
|
|
52
52
|
"postcss": "^8.4.16",
|
|
53
53
|
"react": "^19.0.0",
|
|
54
54
|
"react-accessible-accordion": "^5.0.0",
|
|
55
|
+
"react-animated-numbers": "^1.0.1",
|
|
55
56
|
"react-background-slideshow": "^1.0.4",
|
|
56
57
|
"react-bootstrap": "^2.5.0",
|
|
57
58
|
"react-countdown-circle-timer": "^3.2.1",
|