tabexseriescomponents 0.0.800 → 0.0.802
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 +107 -32
- package/dist/index.esm.js +107 -32
- package/dist/index.umd.js +110 -35
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -48,6 +48,7 @@ var AiOutlineClockCircle = require('@react-icons/all-files/ai/AiOutlineClockCirc
|
|
|
48
48
|
var AiOutlinePlus = require('@react-icons/all-files/ai/AiOutlinePlus');
|
|
49
49
|
var AiOutlineCheck = require('@react-icons/all-files/ai/AiOutlineCheck');
|
|
50
50
|
var DatePicker = require('react-datepicker');
|
|
51
|
+
var FiCalendar = require('@react-icons/all-files/fi/FiCalendar');
|
|
51
52
|
require('@mui/system');
|
|
52
53
|
var reactHorizontalScrollingMenu = require('react-horizontal-scrolling-menu');
|
|
53
54
|
var material = require('@mui/material');
|
|
@@ -63,7 +64,6 @@ var HiOutlineChevronRight = require('@react-icons/all-files/hi/HiOutlineChevronR
|
|
|
63
64
|
var HiOutlineChevronLeft = require('@react-icons/all-files/hi/HiOutlineChevronLeft');
|
|
64
65
|
var GoGlobe = require('@react-icons/all-files/go/GoGlobe');
|
|
65
66
|
var VscGlobe = require('@react-icons/all-files/vsc/VscGlobe');
|
|
66
|
-
var FiCalendar = require('@react-icons/all-files/fi/FiCalendar');
|
|
67
67
|
var Dropdown = require('react-bootstrap/Dropdown');
|
|
68
68
|
var _asyncToGenerator = require('@babel/runtime/helpers/asyncToGenerator');
|
|
69
69
|
var _regeneratorRuntime = require('@babel/runtime/regenerator');
|
|
@@ -1323,7 +1323,7 @@ var defaultstyles = {
|
|
|
1323
1323
|
backgroundColor: state.isSelected ? '' : '',
|
|
1324
1324
|
padding: 5,
|
|
1325
1325
|
textTransform: 'capitalize',
|
|
1326
|
-
color: state.isSelected ? '#eac435' : '
|
|
1326
|
+
color: state.isSelected ? '#eac435' : '#000000',
|
|
1327
1327
|
transition: '.3s',
|
|
1328
1328
|
'&:hover': {
|
|
1329
1329
|
// color: '#eac435',
|
|
@@ -1350,6 +1350,11 @@ var defaultstyles = {
|
|
|
1350
1350
|
// color: '#eac435',
|
|
1351
1351
|
}
|
|
1352
1352
|
});
|
|
1353
|
+
},
|
|
1354
|
+
placeholder: function placeholder(provided, state) {
|
|
1355
|
+
return _objectSpread$2z(_objectSpread$2z({}, provided), {}, {
|
|
1356
|
+
color: '#000000'
|
|
1357
|
+
});
|
|
1353
1358
|
}
|
|
1354
1359
|
};
|
|
1355
1360
|
var defaultstyleswhite = {
|
|
@@ -1470,7 +1475,8 @@ var defaultstylestranslated = {
|
|
|
1470
1475
|
},
|
|
1471
1476
|
placeholder: function placeholder(provided, state) {
|
|
1472
1477
|
return _objectSpread$2z(_objectSpread$2z({}, provided), {}, {
|
|
1473
|
-
textAlign: 'right'
|
|
1478
|
+
textAlign: 'right',
|
|
1479
|
+
color: '#000000'
|
|
1474
1480
|
});
|
|
1475
1481
|
}
|
|
1476
1482
|
};
|
|
@@ -4486,10 +4492,27 @@ var Serviceinfotabs = function Serviceinfotabs(props) {
|
|
|
4486
4492
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
4487
4493
|
"class": TabsStyles.inputfield_label + ' m-0 pb-2 '
|
|
4488
4494
|
}, lang.reservationdate, ":")), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
4489
|
-
"class": "col-lg-12 mb-3"
|
|
4495
|
+
"class": "col-lg-12 mb-3",
|
|
4496
|
+
style: {
|
|
4497
|
+
position: 'relative',
|
|
4498
|
+
height: '40px',
|
|
4499
|
+
borderRadius: sectionproperties.inputfieldborderradius + 'px',
|
|
4500
|
+
fontSize: sectionproperties.inputfieldfontsize + 'px',
|
|
4501
|
+
color: sectionproperties.inputfieldcolor,
|
|
4502
|
+
backgroundColor: sectionproperties.input_bgcolor,
|
|
4503
|
+
border: sectionproperties.inputfieldborderWidth + 'px solid ' + sectionproperties.inputfieldborderColor
|
|
4504
|
+
}
|
|
4505
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
4506
|
+
"class": "w-100 px-2 h-100 allcentered"
|
|
4490
4507
|
}, /*#__PURE__*/React__default["default"].createElement("input", {
|
|
4491
4508
|
type: "date",
|
|
4492
|
-
"class":
|
|
4509
|
+
"class": ' w-100 allcentered pl-1 pr-1 ',
|
|
4510
|
+
style: {
|
|
4511
|
+
background: 'transparent',
|
|
4512
|
+
borderWidth: 0,
|
|
4513
|
+
height: '100%',
|
|
4514
|
+
zIndex: 2
|
|
4515
|
+
},
|
|
4493
4516
|
min: fetchProductInfoQueryContext.data.data.productinfo.serviceinfo.reservationstarts,
|
|
4494
4517
|
max: fetchProductInfoQueryContext.data.data.productinfo.serviceinfo.reservationends,
|
|
4495
4518
|
onChange: function onChange(event) {
|
|
@@ -4511,7 +4534,19 @@ var Serviceinfotabs = function Serviceinfotabs(props) {
|
|
|
4511
4534
|
}
|
|
4512
4535
|
});
|
|
4513
4536
|
}
|
|
4514
|
-
})
|
|
4537
|
+
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
4538
|
+
"class": "h-100 allcentered",
|
|
4539
|
+
style: {
|
|
4540
|
+
position: 'absolute',
|
|
4541
|
+
right: 15,
|
|
4542
|
+
bottom: 0,
|
|
4543
|
+
top: 0,
|
|
4544
|
+
zIndex: 1
|
|
4545
|
+
}
|
|
4546
|
+
}, /*#__PURE__*/React__default["default"].createElement(FiCalendar.FiCalendar, {
|
|
4547
|
+
color: sectionproperties.inputfieldcolor,
|
|
4548
|
+
size: 20
|
|
4549
|
+
})))))), slots.length != 0 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
4515
4550
|
"class": "col-lg-12 col-md-12 col-sm-12"
|
|
4516
4551
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
4517
4552
|
"class": TabsStyles.inputfield_label + ' p-0 d-flex justify-content-start m-0 '
|
|
@@ -9336,7 +9371,7 @@ var Ordershistory = function Ordershistory(props) {
|
|
|
9336
9371
|
color: sectionproperties.paymenttextcolor,
|
|
9337
9372
|
fontWeight: sectionproperties.paymenttextfontweight
|
|
9338
9373
|
}
|
|
9339
|
-
},
|
|
9374
|
+
}, langdetect == 'en' ? sectionproperties.onlinepaymenttexten : sectionproperties.onlinepaymenttextar)), fetchorderhistoryQueryContext.data.data.ordershistory[orderindex].paymentmethod == 'cod' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
9340
9375
|
className: "row m-0 w-100 mb-2 d-flex align-items-center pl-3 pr-3"
|
|
9341
9376
|
}, /*#__PURE__*/React__default["default"].createElement("img", {
|
|
9342
9377
|
src: 'https://tabex-co.com/storage/StaticImages/cod.png',
|
|
@@ -12060,7 +12095,7 @@ var Checkout = function Checkout(props) {
|
|
|
12060
12095
|
d: "M5,10.75 L8.5,14.25 L19.4,2.3 C18.8333333,1.43333333 18.0333333,1 17,1 L4,1 C2.35,1 1,2.35 1,4 L1,17 C1,18.65 2.35,20 4,20 L17,20 C18.65,20 20,18.65 20,17 L20,7.99769186"
|
|
12061
12096
|
})), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
12062
12097
|
className: "".concat(formstyles.checkbox_label) + ' ml-2 mb-0 wordbreak cursor-pointer mr-2 '
|
|
12063
|
-
},
|
|
12098
|
+
}, ' ', langdetect == 'en' ? sectionproperties.onlinepaymenttexten : sectionproperties.onlinepaymenttextar))), authdetailsContext.instinfo.acceptValuCard == 1 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
12064
12099
|
className: "col-xl-4 col-lg-4 col-md-12 mb-3"
|
|
12065
12100
|
}, /*#__PURE__*/React__default["default"].createElement("label", {
|
|
12066
12101
|
className: langdetect == 'en' ? "".concat(formstyles.checkbox, " ").concat(checkoutstyles.checkbox, " ") + ' d-flex mb-0 ' : "".concat(formstyles.checkbox, " ").concat(formstyles.checkboxtranslated, " ").concat(checkoutstyles.checkbox, " ") + ' d-flex mb-0 '
|
|
@@ -15996,7 +16031,7 @@ var Filter$1 = function Filter(props) {
|
|
|
15996
16031
|
_useState20 = _slicedToArray__default["default"](_useState19, 2),
|
|
15997
16032
|
raterangevalue = _useState20[0],
|
|
15998
16033
|
setraterangevalue = _useState20[1];
|
|
15999
|
-
|
|
16034
|
+
// const timeoutRef = React.useRef(null);
|
|
16000
16035
|
var _useState21 = React.useState(''),
|
|
16001
16036
|
_useState22 = _slicedToArray__default["default"](_useState21, 2);
|
|
16002
16037
|
_useState22[0];
|
|
@@ -17261,6 +17296,16 @@ var Filter$1 = function Filter(props) {
|
|
|
17261
17296
|
_useState30 = _slicedToArray__default["default"](_useState29, 2),
|
|
17262
17297
|
checked = _useState30[0],
|
|
17263
17298
|
setChecked = _useState30[1];
|
|
17299
|
+
var _useState31 = React.useState({
|
|
17300
|
+
min: 0,
|
|
17301
|
+
max: 5
|
|
17302
|
+
}),
|
|
17303
|
+
_useState32 = _slicedToArray__default["default"](_useState31, 2),
|
|
17304
|
+
price_rangevalue = _useState32[0],
|
|
17305
|
+
setprice_rangevalue = _useState32[1];
|
|
17306
|
+
var timeoutRef = React__default["default"].useRef(null);
|
|
17307
|
+
var timeoutRef_price = React__default["default"].useRef(null);
|
|
17308
|
+
var timeoutRef__range_price = React__default["default"].useRef(null);
|
|
17264
17309
|
var PriceInputRangeFilter = function PriceInputRangeFilter() {
|
|
17265
17310
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17266
17311
|
"class": "row m-0 w-100 mb-3 mt-2"
|
|
@@ -17280,30 +17325,45 @@ var Filter$1 = function Filter(props) {
|
|
|
17280
17325
|
}
|
|
17281
17326
|
// maxValue={parseInt(sectionproperties.filterpricemaxvalue)}
|
|
17282
17327
|
// minValue={parseInt(sectionproperties.filterpriceminvalue)}
|
|
17283
|
-
// value={temppricevalue}
|
|
17284
17328
|
,
|
|
17285
|
-
|
|
17286
|
-
|
|
17287
|
-
|
|
17288
|
-
|
|
17289
|
-
|
|
17290
|
-
// if (attritem.id == item.id) {
|
|
17291
|
-
// tempproductfeatuesarr[attrindex].value = e.min;
|
|
17292
|
-
// tempproductfeatuesarr[attrindex].valuemax = e.max;
|
|
17293
|
-
// isattrexists = true;
|
|
17294
|
-
// }
|
|
17295
|
-
// });
|
|
17296
|
-
// if (isattrexists == false) {
|
|
17297
|
-
// tempproductfeatuesarr.push({
|
|
17298
|
-
// id: item.id,
|
|
17299
|
-
// value: e.min,
|
|
17300
|
-
// valuemax: e.max,
|
|
17301
|
-
// });
|
|
17302
|
-
// }
|
|
17303
|
-
// setproductfeatuesarr([...tempproductfeatuesarr]);
|
|
17329
|
+
maxValue: parseInt(5000),
|
|
17330
|
+
minValue: parseInt(0),
|
|
17331
|
+
value: price_rangevalue,
|
|
17332
|
+
onChange: function onChange(value) {
|
|
17333
|
+
setprice_rangevalue(_objectSpread$2e({}, value));
|
|
17304
17334
|
}
|
|
17305
17335
|
})));
|
|
17306
17336
|
};
|
|
17337
|
+
React__default["default"].useEffect(function () {
|
|
17338
|
+
if (timeoutRef_price.current !== null) {
|
|
17339
|
+
clearTimeout(timeoutRef_price.current);
|
|
17340
|
+
}
|
|
17341
|
+
timeoutRef_price.current = setTimeout(function () {
|
|
17342
|
+
if (pricevalue2.min != '' && pricevalue2.max != '') {
|
|
17343
|
+
var tempfetchproductsfilerobjcontext = _objectSpread$2e({}, ProductFilterObjContext);
|
|
17344
|
+
tempfetchproductsfilerobjcontext.price_min = pricevalue2.min;
|
|
17345
|
+
tempfetchproductsfilerobjcontext.price_max = pricevalue2.max;
|
|
17346
|
+
tempfetchproductsfilerobjcontext.page = 0;
|
|
17347
|
+
setProductFilterObjContext(_objectSpread$2e({}, tempfetchproductsfilerobjcontext));
|
|
17348
|
+
// routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, encodeURIComponent(JSON.stringify(tempfetchproductsfilerobjcontext)));
|
|
17349
|
+
}
|
|
17350
|
+
}, 500);
|
|
17351
|
+
}, [pricevalue2]);
|
|
17352
|
+
React__default["default"].useEffect(function () {
|
|
17353
|
+
if (timeoutRef__range_price.current !== null) {
|
|
17354
|
+
clearTimeout(timeoutRef__range_price.current);
|
|
17355
|
+
}
|
|
17356
|
+
timeoutRef__range_price.current = setTimeout(function () {
|
|
17357
|
+
if (price_rangevalue.min != '' && price_rangevalue.max != '') {
|
|
17358
|
+
var tempfetchproductsfilerobjcontext = _objectSpread$2e({}, ProductFilterObjContext);
|
|
17359
|
+
tempfetchproductsfilerobjcontext.price_min = price_rangevalue.min;
|
|
17360
|
+
tempfetchproductsfilerobjcontext.price_max = price_rangevalue.max;
|
|
17361
|
+
tempfetchproductsfilerobjcontext.page = 0;
|
|
17362
|
+
setProductFilterObjContext(_objectSpread$2e({}, tempfetchproductsfilerobjcontext));
|
|
17363
|
+
// routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, encodeURIComponent(JSON.stringify(tempfetchproductsfilerobjcontext)));
|
|
17364
|
+
}
|
|
17365
|
+
}, 500);
|
|
17366
|
+
}, [price_rangevalue]);
|
|
17307
17367
|
var PriceFromToFilter = function PriceFromToFilter() {
|
|
17308
17368
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17309
17369
|
"class": "row m-0 w-100 mb-3 mt-2"
|
|
@@ -17365,16 +17425,31 @@ var Filter$1 = function Filter(props) {
|
|
|
17365
17425
|
};
|
|
17366
17426
|
var ClearFilterButton = function ClearFilterButton() {
|
|
17367
17427
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17368
|
-
"class": "col-lg-12"
|
|
17428
|
+
"class": "col-lg-12 mb-4"
|
|
17369
17429
|
}, /*#__PURE__*/React__default["default"].createElement("button", {
|
|
17370
17430
|
"class": "w-100 bg-primary bg-secondaryhover",
|
|
17371
17431
|
style: {
|
|
17372
17432
|
height: 40,
|
|
17373
17433
|
borderRadius: 100
|
|
17434
|
+
},
|
|
17435
|
+
onClick: function onClick() {
|
|
17436
|
+
var tempfetchproductsfilerobjcontext = _objectSpread$2e({}, ProductFilterObjContext);
|
|
17437
|
+
tempfetchproductsfilerobjcontext.FilterOptions = [];
|
|
17438
|
+
delete tempfetchproductsfilerobjcontext.price_max;
|
|
17439
|
+
delete tempfetchproductsfilerobjcontext.price_min;
|
|
17440
|
+
delete tempfetchproductsfilerobjcontext.minrate;
|
|
17441
|
+
delete tempfetchproductsfilerobjcontext.maxrate;
|
|
17442
|
+
delete tempfetchproductsfilerobjcontext.sortprice;
|
|
17443
|
+
delete tempfetchproductsfilerobjcontext.sortdates;
|
|
17444
|
+
delete tempfetchproductsfilerobjcontext.prod_featruesar;
|
|
17445
|
+
tempfetchproductsfilerobjcontext.page = 0;
|
|
17446
|
+
// tempfetchproductsfilerobjcontext.collections = [];
|
|
17447
|
+
|
|
17448
|
+
setProductFilterObjContext(_objectSpread$2e({}, tempfetchproductsfilerobjcontext));
|
|
17374
17449
|
}
|
|
17375
17450
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
17376
17451
|
"class": "m-0 p-0 text-white"
|
|
17377
|
-
},
|
|
17452
|
+
}, langdetect == 'en' ? 'Clear Filter' : 'حذف')));
|
|
17378
17453
|
};
|
|
17379
17454
|
// const queryParameters = new URLSearchParams(window.location.search);
|
|
17380
17455
|
// useEffect(() => {
|
|
@@ -17910,7 +17985,7 @@ var Filter$1 = function Filter(props) {
|
|
|
17910
17985
|
"class": "row m-0 w-100"
|
|
17911
17986
|
}, CollectionsFilter()), sectionproperties.showdynamicfilter == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17912
17987
|
"class": "row m-0 w-100"
|
|
17913
|
-
}, DynamicFilter()), sectionproperties.showvariantsfilter == 'Show' && InstFilters()))))))), props.typeprops == 'vertical' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17988
|
+
}, DynamicFilter()), sectionproperties.showvariantsfilter == 'Show' && InstFilters())), ClearFilterButton()))))), props.typeprops == 'vertical' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17914
17989
|
className: 'col-lg-12 p-0 w-100 filter mt-md-0 d-md-none'
|
|
17915
17990
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17916
17991
|
className: "".concat(filterstyles.filterslider_container) + ' pb-md-5 ',
|
package/dist/index.esm.js
CHANGED
|
@@ -46,6 +46,7 @@ import { AiOutlineClockCircle } from '@react-icons/all-files/ai/AiOutlineClockCi
|
|
|
46
46
|
import { AiOutlinePlus } from '@react-icons/all-files/ai/AiOutlinePlus';
|
|
47
47
|
import { AiOutlineCheck } from '@react-icons/all-files/ai/AiOutlineCheck';
|
|
48
48
|
import DatePicker from 'react-datepicker';
|
|
49
|
+
import { FiCalendar } from '@react-icons/all-files/fi/FiCalendar';
|
|
49
50
|
import '@mui/system';
|
|
50
51
|
import { ScrollMenu } from 'react-horizontal-scrolling-menu';
|
|
51
52
|
import { Box, Tabs, Tab } from '@mui/material';
|
|
@@ -61,7 +62,6 @@ import { HiOutlineChevronRight } from '@react-icons/all-files/hi/HiOutlineChevro
|
|
|
61
62
|
import { HiOutlineChevronLeft } from '@react-icons/all-files/hi/HiOutlineChevronLeft';
|
|
62
63
|
import { GoGlobe } from '@react-icons/all-files/go/GoGlobe';
|
|
63
64
|
import { VscGlobe } from '@react-icons/all-files/vsc/VscGlobe';
|
|
64
|
-
import { FiCalendar } from '@react-icons/all-files/fi/FiCalendar';
|
|
65
65
|
import Dropdown from 'react-bootstrap/Dropdown';
|
|
66
66
|
import _asyncToGenerator from '@babel/runtime/helpers/asyncToGenerator';
|
|
67
67
|
import _regeneratorRuntime from '@babel/runtime/regenerator';
|
|
@@ -1274,7 +1274,7 @@ var defaultstyles = {
|
|
|
1274
1274
|
backgroundColor: state.isSelected ? '' : '',
|
|
1275
1275
|
padding: 5,
|
|
1276
1276
|
textTransform: 'capitalize',
|
|
1277
|
-
color: state.isSelected ? '#eac435' : '
|
|
1277
|
+
color: state.isSelected ? '#eac435' : '#000000',
|
|
1278
1278
|
transition: '.3s',
|
|
1279
1279
|
'&:hover': {
|
|
1280
1280
|
// color: '#eac435',
|
|
@@ -1301,6 +1301,11 @@ var defaultstyles = {
|
|
|
1301
1301
|
// color: '#eac435',
|
|
1302
1302
|
}
|
|
1303
1303
|
});
|
|
1304
|
+
},
|
|
1305
|
+
placeholder: function placeholder(provided, state) {
|
|
1306
|
+
return _objectSpread$2z(_objectSpread$2z({}, provided), {}, {
|
|
1307
|
+
color: '#000000'
|
|
1308
|
+
});
|
|
1304
1309
|
}
|
|
1305
1310
|
};
|
|
1306
1311
|
var defaultstyleswhite = {
|
|
@@ -1421,7 +1426,8 @@ var defaultstylestranslated = {
|
|
|
1421
1426
|
},
|
|
1422
1427
|
placeholder: function placeholder(provided, state) {
|
|
1423
1428
|
return _objectSpread$2z(_objectSpread$2z({}, provided), {}, {
|
|
1424
|
-
textAlign: 'right'
|
|
1429
|
+
textAlign: 'right',
|
|
1430
|
+
color: '#000000'
|
|
1425
1431
|
});
|
|
1426
1432
|
}
|
|
1427
1433
|
};
|
|
@@ -4437,10 +4443,27 @@ var Serviceinfotabs = function Serviceinfotabs(props) {
|
|
|
4437
4443
|
}, /*#__PURE__*/React.createElement("p", {
|
|
4438
4444
|
"class": TabsStyles.inputfield_label + ' m-0 pb-2 '
|
|
4439
4445
|
}, lang.reservationdate, ":")), /*#__PURE__*/React.createElement("div", {
|
|
4440
|
-
"class": "col-lg-12 mb-3"
|
|
4446
|
+
"class": "col-lg-12 mb-3",
|
|
4447
|
+
style: {
|
|
4448
|
+
position: 'relative',
|
|
4449
|
+
height: '40px',
|
|
4450
|
+
borderRadius: sectionproperties.inputfieldborderradius + 'px',
|
|
4451
|
+
fontSize: sectionproperties.inputfieldfontsize + 'px',
|
|
4452
|
+
color: sectionproperties.inputfieldcolor,
|
|
4453
|
+
backgroundColor: sectionproperties.input_bgcolor,
|
|
4454
|
+
border: sectionproperties.inputfieldborderWidth + 'px solid ' + sectionproperties.inputfieldborderColor
|
|
4455
|
+
}
|
|
4456
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
4457
|
+
"class": "w-100 px-2 h-100 allcentered"
|
|
4441
4458
|
}, /*#__PURE__*/React.createElement("input", {
|
|
4442
4459
|
type: "date",
|
|
4443
|
-
"class":
|
|
4460
|
+
"class": ' w-100 allcentered pl-1 pr-1 ',
|
|
4461
|
+
style: {
|
|
4462
|
+
background: 'transparent',
|
|
4463
|
+
borderWidth: 0,
|
|
4464
|
+
height: '100%',
|
|
4465
|
+
zIndex: 2
|
|
4466
|
+
},
|
|
4444
4467
|
min: fetchProductInfoQueryContext.data.data.productinfo.serviceinfo.reservationstarts,
|
|
4445
4468
|
max: fetchProductInfoQueryContext.data.data.productinfo.serviceinfo.reservationends,
|
|
4446
4469
|
onChange: function onChange(event) {
|
|
@@ -4462,7 +4485,19 @@ var Serviceinfotabs = function Serviceinfotabs(props) {
|
|
|
4462
4485
|
}
|
|
4463
4486
|
});
|
|
4464
4487
|
}
|
|
4465
|
-
})
|
|
4488
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
4489
|
+
"class": "h-100 allcentered",
|
|
4490
|
+
style: {
|
|
4491
|
+
position: 'absolute',
|
|
4492
|
+
right: 15,
|
|
4493
|
+
bottom: 0,
|
|
4494
|
+
top: 0,
|
|
4495
|
+
zIndex: 1
|
|
4496
|
+
}
|
|
4497
|
+
}, /*#__PURE__*/React.createElement(FiCalendar, {
|
|
4498
|
+
color: sectionproperties.inputfieldcolor,
|
|
4499
|
+
size: 20
|
|
4500
|
+
})))))), slots.length != 0 && /*#__PURE__*/React.createElement("div", {
|
|
4466
4501
|
"class": "col-lg-12 col-md-12 col-sm-12"
|
|
4467
4502
|
}, /*#__PURE__*/React.createElement("p", {
|
|
4468
4503
|
"class": TabsStyles.inputfield_label + ' p-0 d-flex justify-content-start m-0 '
|
|
@@ -9287,7 +9322,7 @@ var Ordershistory = function Ordershistory(props) {
|
|
|
9287
9322
|
color: sectionproperties.paymenttextcolor,
|
|
9288
9323
|
fontWeight: sectionproperties.paymenttextfontweight
|
|
9289
9324
|
}
|
|
9290
|
-
},
|
|
9325
|
+
}, langdetect == 'en' ? sectionproperties.onlinepaymenttexten : sectionproperties.onlinepaymenttextar)), fetchorderhistoryQueryContext.data.data.ordershistory[orderindex].paymentmethod == 'cod' && /*#__PURE__*/React.createElement("div", {
|
|
9291
9326
|
className: "row m-0 w-100 mb-2 d-flex align-items-center pl-3 pr-3"
|
|
9292
9327
|
}, /*#__PURE__*/React.createElement("img", {
|
|
9293
9328
|
src: 'https://tabex-co.com/storage/StaticImages/cod.png',
|
|
@@ -12011,7 +12046,7 @@ var Checkout = function Checkout(props) {
|
|
|
12011
12046
|
d: "M5,10.75 L8.5,14.25 L19.4,2.3 C18.8333333,1.43333333 18.0333333,1 17,1 L4,1 C2.35,1 1,2.35 1,4 L1,17 C1,18.65 2.35,20 4,20 L17,20 C18.65,20 20,18.65 20,17 L20,7.99769186"
|
|
12012
12047
|
})), /*#__PURE__*/React.createElement("p", {
|
|
12013
12048
|
className: "".concat(formstyles.checkbox_label) + ' ml-2 mb-0 wordbreak cursor-pointer mr-2 '
|
|
12014
|
-
},
|
|
12049
|
+
}, ' ', langdetect == 'en' ? sectionproperties.onlinepaymenttexten : sectionproperties.onlinepaymenttextar))), authdetailsContext.instinfo.acceptValuCard == 1 && /*#__PURE__*/React.createElement("div", {
|
|
12015
12050
|
className: "col-xl-4 col-lg-4 col-md-12 mb-3"
|
|
12016
12051
|
}, /*#__PURE__*/React.createElement("label", {
|
|
12017
12052
|
className: langdetect == 'en' ? "".concat(formstyles.checkbox, " ").concat(checkoutstyles.checkbox, " ") + ' d-flex mb-0 ' : "".concat(formstyles.checkbox, " ").concat(formstyles.checkboxtranslated, " ").concat(checkoutstyles.checkbox, " ") + ' d-flex mb-0 '
|
|
@@ -15947,7 +15982,7 @@ var Filter$1 = function Filter(props) {
|
|
|
15947
15982
|
_useState20 = _slicedToArray(_useState19, 2),
|
|
15948
15983
|
raterangevalue = _useState20[0],
|
|
15949
15984
|
setraterangevalue = _useState20[1];
|
|
15950
|
-
|
|
15985
|
+
// const timeoutRef = React.useRef(null);
|
|
15951
15986
|
var _useState21 = useState(''),
|
|
15952
15987
|
_useState22 = _slicedToArray(_useState21, 2);
|
|
15953
15988
|
_useState22[0];
|
|
@@ -17212,6 +17247,16 @@ var Filter$1 = function Filter(props) {
|
|
|
17212
17247
|
_useState30 = _slicedToArray(_useState29, 2),
|
|
17213
17248
|
checked = _useState30[0],
|
|
17214
17249
|
setChecked = _useState30[1];
|
|
17250
|
+
var _useState31 = useState({
|
|
17251
|
+
min: 0,
|
|
17252
|
+
max: 5
|
|
17253
|
+
}),
|
|
17254
|
+
_useState32 = _slicedToArray(_useState31, 2),
|
|
17255
|
+
price_rangevalue = _useState32[0],
|
|
17256
|
+
setprice_rangevalue = _useState32[1];
|
|
17257
|
+
var timeoutRef = React.useRef(null);
|
|
17258
|
+
var timeoutRef_price = React.useRef(null);
|
|
17259
|
+
var timeoutRef__range_price = React.useRef(null);
|
|
17215
17260
|
var PriceInputRangeFilter = function PriceInputRangeFilter() {
|
|
17216
17261
|
return /*#__PURE__*/React.createElement("div", {
|
|
17217
17262
|
"class": "row m-0 w-100 mb-3 mt-2"
|
|
@@ -17231,30 +17276,45 @@ var Filter$1 = function Filter(props) {
|
|
|
17231
17276
|
}
|
|
17232
17277
|
// maxValue={parseInt(sectionproperties.filterpricemaxvalue)}
|
|
17233
17278
|
// minValue={parseInt(sectionproperties.filterpriceminvalue)}
|
|
17234
|
-
// value={temppricevalue}
|
|
17235
17279
|
,
|
|
17236
|
-
|
|
17237
|
-
|
|
17238
|
-
|
|
17239
|
-
|
|
17240
|
-
|
|
17241
|
-
// if (attritem.id == item.id) {
|
|
17242
|
-
// tempproductfeatuesarr[attrindex].value = e.min;
|
|
17243
|
-
// tempproductfeatuesarr[attrindex].valuemax = e.max;
|
|
17244
|
-
// isattrexists = true;
|
|
17245
|
-
// }
|
|
17246
|
-
// });
|
|
17247
|
-
// if (isattrexists == false) {
|
|
17248
|
-
// tempproductfeatuesarr.push({
|
|
17249
|
-
// id: item.id,
|
|
17250
|
-
// value: e.min,
|
|
17251
|
-
// valuemax: e.max,
|
|
17252
|
-
// });
|
|
17253
|
-
// }
|
|
17254
|
-
// setproductfeatuesarr([...tempproductfeatuesarr]);
|
|
17280
|
+
maxValue: parseInt(5000),
|
|
17281
|
+
minValue: parseInt(0),
|
|
17282
|
+
value: price_rangevalue,
|
|
17283
|
+
onChange: function onChange(value) {
|
|
17284
|
+
setprice_rangevalue(_objectSpread$2e({}, value));
|
|
17255
17285
|
}
|
|
17256
17286
|
})));
|
|
17257
17287
|
};
|
|
17288
|
+
React.useEffect(function () {
|
|
17289
|
+
if (timeoutRef_price.current !== null) {
|
|
17290
|
+
clearTimeout(timeoutRef_price.current);
|
|
17291
|
+
}
|
|
17292
|
+
timeoutRef_price.current = setTimeout(function () {
|
|
17293
|
+
if (pricevalue2.min != '' && pricevalue2.max != '') {
|
|
17294
|
+
var tempfetchproductsfilerobjcontext = _objectSpread$2e({}, ProductFilterObjContext);
|
|
17295
|
+
tempfetchproductsfilerobjcontext.price_min = pricevalue2.min;
|
|
17296
|
+
tempfetchproductsfilerobjcontext.price_max = pricevalue2.max;
|
|
17297
|
+
tempfetchproductsfilerobjcontext.page = 0;
|
|
17298
|
+
setProductFilterObjContext(_objectSpread$2e({}, tempfetchproductsfilerobjcontext));
|
|
17299
|
+
// routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, encodeURIComponent(JSON.stringify(tempfetchproductsfilerobjcontext)));
|
|
17300
|
+
}
|
|
17301
|
+
}, 500);
|
|
17302
|
+
}, [pricevalue2]);
|
|
17303
|
+
React.useEffect(function () {
|
|
17304
|
+
if (timeoutRef__range_price.current !== null) {
|
|
17305
|
+
clearTimeout(timeoutRef__range_price.current);
|
|
17306
|
+
}
|
|
17307
|
+
timeoutRef__range_price.current = setTimeout(function () {
|
|
17308
|
+
if (price_rangevalue.min != '' && price_rangevalue.max != '') {
|
|
17309
|
+
var tempfetchproductsfilerobjcontext = _objectSpread$2e({}, ProductFilterObjContext);
|
|
17310
|
+
tempfetchproductsfilerobjcontext.price_min = price_rangevalue.min;
|
|
17311
|
+
tempfetchproductsfilerobjcontext.price_max = price_rangevalue.max;
|
|
17312
|
+
tempfetchproductsfilerobjcontext.page = 0;
|
|
17313
|
+
setProductFilterObjContext(_objectSpread$2e({}, tempfetchproductsfilerobjcontext));
|
|
17314
|
+
// routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, encodeURIComponent(JSON.stringify(tempfetchproductsfilerobjcontext)));
|
|
17315
|
+
}
|
|
17316
|
+
}, 500);
|
|
17317
|
+
}, [price_rangevalue]);
|
|
17258
17318
|
var PriceFromToFilter = function PriceFromToFilter() {
|
|
17259
17319
|
return /*#__PURE__*/React.createElement("div", {
|
|
17260
17320
|
"class": "row m-0 w-100 mb-3 mt-2"
|
|
@@ -17316,16 +17376,31 @@ var Filter$1 = function Filter(props) {
|
|
|
17316
17376
|
};
|
|
17317
17377
|
var ClearFilterButton = function ClearFilterButton() {
|
|
17318
17378
|
return /*#__PURE__*/React.createElement("div", {
|
|
17319
|
-
"class": "col-lg-12"
|
|
17379
|
+
"class": "col-lg-12 mb-4"
|
|
17320
17380
|
}, /*#__PURE__*/React.createElement("button", {
|
|
17321
17381
|
"class": "w-100 bg-primary bg-secondaryhover",
|
|
17322
17382
|
style: {
|
|
17323
17383
|
height: 40,
|
|
17324
17384
|
borderRadius: 100
|
|
17385
|
+
},
|
|
17386
|
+
onClick: function onClick() {
|
|
17387
|
+
var tempfetchproductsfilerobjcontext = _objectSpread$2e({}, ProductFilterObjContext);
|
|
17388
|
+
tempfetchproductsfilerobjcontext.FilterOptions = [];
|
|
17389
|
+
delete tempfetchproductsfilerobjcontext.price_max;
|
|
17390
|
+
delete tempfetchproductsfilerobjcontext.price_min;
|
|
17391
|
+
delete tempfetchproductsfilerobjcontext.minrate;
|
|
17392
|
+
delete tempfetchproductsfilerobjcontext.maxrate;
|
|
17393
|
+
delete tempfetchproductsfilerobjcontext.sortprice;
|
|
17394
|
+
delete tempfetchproductsfilerobjcontext.sortdates;
|
|
17395
|
+
delete tempfetchproductsfilerobjcontext.prod_featruesar;
|
|
17396
|
+
tempfetchproductsfilerobjcontext.page = 0;
|
|
17397
|
+
// tempfetchproductsfilerobjcontext.collections = [];
|
|
17398
|
+
|
|
17399
|
+
setProductFilterObjContext(_objectSpread$2e({}, tempfetchproductsfilerobjcontext));
|
|
17325
17400
|
}
|
|
17326
17401
|
}, /*#__PURE__*/React.createElement("p", {
|
|
17327
17402
|
"class": "m-0 p-0 text-white"
|
|
17328
|
-
},
|
|
17403
|
+
}, langdetect == 'en' ? 'Clear Filter' : 'حذف')));
|
|
17329
17404
|
};
|
|
17330
17405
|
// const queryParameters = new URLSearchParams(window.location.search);
|
|
17331
17406
|
// useEffect(() => {
|
|
@@ -17861,7 +17936,7 @@ var Filter$1 = function Filter(props) {
|
|
|
17861
17936
|
"class": "row m-0 w-100"
|
|
17862
17937
|
}, CollectionsFilter()), sectionproperties.showdynamicfilter == 'Show' && /*#__PURE__*/React.createElement("div", {
|
|
17863
17938
|
"class": "row m-0 w-100"
|
|
17864
|
-
}, DynamicFilter()), sectionproperties.showvariantsfilter == 'Show' && InstFilters()))))))), props.typeprops == 'vertical' && /*#__PURE__*/React.createElement("div", {
|
|
17939
|
+
}, DynamicFilter()), sectionproperties.showvariantsfilter == 'Show' && InstFilters())), ClearFilterButton()))))), props.typeprops == 'vertical' && /*#__PURE__*/React.createElement("div", {
|
|
17865
17940
|
className: 'col-lg-12 p-0 w-100 filter mt-md-0 d-md-none'
|
|
17866
17941
|
}, /*#__PURE__*/React.createElement("div", {
|
|
17867
17942
|
className: "".concat(filterstyles.filterslider_container) + ' pb-md-5 ',
|
package/dist/index.umd.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('@babel/runtime/helpers/slicedToArray'), require('react'), require('@babel/runtime/helpers/classCallCheck'), require('@babel/runtime/helpers/createClass'), require('@babel/runtime/helpers/possibleConstructorReturn'), require('@babel/runtime/helpers/getPrototypeOf'), require('@babel/runtime/helpers/inherits'), require('@babel/runtime/helpers/defineProperty'), require('universal-cookie'), require('react-cssfx-loading'), require('glamor'), require('@react-oauth/google'), require('jwt-decode'), require('react-facebook-login/dist/facebook-login-render-props'), require('@react-icons/all-files/fa/FaFacebookF'), require('@react-icons/all-files/ai/AiOutlineUser'), require('@react-icons/all-files/io/IoMdClose'), require('react-bootstrap'), require('imagekitio-react'), require('@babel/runtime/helpers/toConsumableArray'), require('react-image-gallery'), require('@react-icons/all-files/md/MdAddShoppingCart'), require('@react-icons/all-files/io5/IoBagHandleOutline'), require('@react-icons/all-files/bs/BsBag'), require('@react-icons/all-files/cg/CgShoppingBag'), require('@react-icons/all-files/fa/FaRegHeart'), require('@react-icons/all-files/fa/FaHeart'), require('@react-icons/all-files/fi/FiShoppingBag'), require('@react-icons/all-files/fi/FiShoppingCart'), require('@react-icons/all-files/ai/AiFillStar'), require('@react-icons/all-files/ai/AiOutlineStar'), require('@react-icons/all-files/fa/FaPlus'), require('@react-icons/all-files/fa/FaMinus'), require('@react-icons/all-files/fi/FiBox'), require('@react-icons/all-files/ri/RiArrowGoBackLine'), require('react-accessible-accordion'), require('react-share'), require('@react-icons/all-files/fi/FiMinus'), require('@react-icons/all-files/fi/FiPlus'), require('react-rating-stars-component'), require('@react-icons/all-files/fi/FiLayers'), require('@react-icons/all-files/hi/HiOutlinePlusCircle'), require('@react-icons/all-files/hi/HiOutlineMinusCircle'), require('react-textarea-autosize'), require('@react-icons/all-files/ai/AiOutlineClockCircle'), require('@react-icons/all-files/ai/AiOutlinePlus'), require('@react-icons/all-files/ai/AiOutlineCheck'), require('react-datepicker'), require('@mui/system'), require('react-horizontal-scrolling-menu'), require('@mui/material'), require('@react-icons/all-files/hi/HiOutlinePhone'), require('@react-icons/all-files/ai/AiOutlineMail'), require('@react-icons/all-files/fa/FaShippingFast'), require('@react-icons/all-files/ri/RiSecurePaymentLine'), require('react-player'), require('@react-icons/all-files/ai/AiOutlineSecurityScan'), require('@react-icons/all-files/fa/FaStar'), require('@react-icons/all-files/io5/IoLocationSharp'), require('@react-icons/all-files/hi/HiOutlineChevronRight'), require('@react-icons/all-files/hi/HiOutlineChevronLeft'), require('@react-icons/all-files/go/GoGlobe'), require('@react-icons/all-files/vsc/VscGlobe'), require('
|
|
3
|
-
typeof define === 'function' && define.amd ? define(['@babel/runtime/helpers/slicedToArray', 'react', '@babel/runtime/helpers/classCallCheck', '@babel/runtime/helpers/createClass', '@babel/runtime/helpers/possibleConstructorReturn', '@babel/runtime/helpers/getPrototypeOf', '@babel/runtime/helpers/inherits', '@babel/runtime/helpers/defineProperty', 'universal-cookie', 'react-cssfx-loading', 'glamor', '@react-oauth/google', 'jwt-decode', 'react-facebook-login/dist/facebook-login-render-props', '@react-icons/all-files/fa/FaFacebookF', '@react-icons/all-files/ai/AiOutlineUser', '@react-icons/all-files/io/IoMdClose', 'react-bootstrap', 'imagekitio-react', '@babel/runtime/helpers/toConsumableArray', 'react-image-gallery', '@react-icons/all-files/md/MdAddShoppingCart', '@react-icons/all-files/io5/IoBagHandleOutline', '@react-icons/all-files/bs/BsBag', '@react-icons/all-files/cg/CgShoppingBag', '@react-icons/all-files/fa/FaRegHeart', '@react-icons/all-files/fa/FaHeart', '@react-icons/all-files/fi/FiShoppingBag', '@react-icons/all-files/fi/FiShoppingCart', '@react-icons/all-files/ai/AiFillStar', '@react-icons/all-files/ai/AiOutlineStar', '@react-icons/all-files/fa/FaPlus', '@react-icons/all-files/fa/FaMinus', '@react-icons/all-files/fi/FiBox', '@react-icons/all-files/ri/RiArrowGoBackLine', 'react-accessible-accordion', 'react-share', '@react-icons/all-files/fi/FiMinus', '@react-icons/all-files/fi/FiPlus', 'react-rating-stars-component', '@react-icons/all-files/fi/FiLayers', '@react-icons/all-files/hi/HiOutlinePlusCircle', '@react-icons/all-files/hi/HiOutlineMinusCircle', 'react-textarea-autosize', '@react-icons/all-files/ai/AiOutlineClockCircle', '@react-icons/all-files/ai/AiOutlinePlus', '@react-icons/all-files/ai/AiOutlineCheck', 'react-datepicker', '@mui/system', 'react-horizontal-scrolling-menu', '@mui/material', '@react-icons/all-files/hi/HiOutlinePhone', '@react-icons/all-files/ai/AiOutlineMail', '@react-icons/all-files/fa/FaShippingFast', '@react-icons/all-files/ri/RiSecurePaymentLine', 'react-player', '@react-icons/all-files/ai/AiOutlineSecurityScan', '@react-icons/all-files/fa/FaStar', '@react-icons/all-files/io5/IoLocationSharp', '@react-icons/all-files/hi/HiOutlineChevronRight', '@react-icons/all-files/hi/HiOutlineChevronLeft', '@react-icons/all-files/go/GoGlobe', '@react-icons/all-files/vsc/VscGlobe', '
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.tabexseriescomponents = factory(global._slicedToArray, global.React, global._classCallCheck, global._createClass, global._possibleConstructorReturn, global._getPrototypeOf, global._inherits, global._defineProperty, global.Cookies, global.reactCssfxLoading, global.glamor, global.google, global.jwtDecode, global.FacebookLogin, global.FaFacebookF, global.AiOutlineUser, global.IoMdClose, global.reactBootstrap, global.imagekitioReact, global._toConsumableArray, global.ImageGallery, global.MdAddShoppingCart, global.IoBagHandleOutline, global.BsBag, global.CgShoppingBag, global.FaRegHeart, global.FaHeart$1, global.FiShoppingBag, global.FiShoppingCart, global.AiFillStar$1, global.AiOutlineStar, global.FaPlus, global.FaMinus, global.FiBox$1, global.RiArrowGoBackLine, global.reactAccessibleAccordion, global.reactShare, global.FiMinus, global.FiPlus, global.ReactStars, global.FiLayers, global.HiOutlinePlusCircle, null, global.TextareaAutosize, global.AiOutlineClockCircle, global.AiOutlinePlus, global.AiOutlineCheck, global.DatePicker, null, global.reactHorizontalScrollingMenu, global.material, global.HiOutlinePhone, global.AiOutlineMail, global.FaShippingFast, global.RiSecurePaymentLine, global.ReactPlayer, global.AiOutlineSecurityScan, global.FaStar, global.IoLocationSharp, global.HiOutlineChevronRight, global.HiOutlineChevronLeft, global.GoGlobe, global.VscGlobe, global.
|
|
5
|
-
})(this, (function (_slicedToArray, React, _classCallCheck, _createClass, _possibleConstructorReturn, _getPrototypeOf, _inherits, _defineProperty, Cookies, reactCssfxLoading, glamor, google, jwtDecode, FacebookLogin, FaFacebookF, AiOutlineUser, IoMdClose, reactBootstrap, imagekitioReact, _toConsumableArray, ImageGallery, MdAddShoppingCart, IoBagHandleOutline, BsBag, CgShoppingBag, FaRegHeart, FaHeart$1, FiShoppingBag, FiShoppingCart, AiFillStar$1, AiOutlineStar, FaPlus, FaMinus, FiBox$1, RiArrowGoBackLine, reactAccessibleAccordion, reactShare, FiMinus, FiPlus, ReactStars, FiLayers, HiOutlinePlusCircle, HiOutlineMinusCircle, TextareaAutosize, AiOutlineClockCircle, AiOutlinePlus, AiOutlineCheck, DatePicker, system, reactHorizontalScrollingMenu, material, HiOutlinePhone, AiOutlineMail, FaShippingFast, RiSecurePaymentLine, ReactPlayer, AiOutlineSecurityScan, FaStar, IoLocationSharp, HiOutlineChevronRight, HiOutlineChevronLeft, GoGlobe, VscGlobe,
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('@babel/runtime/helpers/slicedToArray'), require('react'), require('@babel/runtime/helpers/classCallCheck'), require('@babel/runtime/helpers/createClass'), require('@babel/runtime/helpers/possibleConstructorReturn'), require('@babel/runtime/helpers/getPrototypeOf'), require('@babel/runtime/helpers/inherits'), require('@babel/runtime/helpers/defineProperty'), require('universal-cookie'), require('react-cssfx-loading'), require('glamor'), require('@react-oauth/google'), require('jwt-decode'), require('react-facebook-login/dist/facebook-login-render-props'), require('@react-icons/all-files/fa/FaFacebookF'), require('@react-icons/all-files/ai/AiOutlineUser'), require('@react-icons/all-files/io/IoMdClose'), require('react-bootstrap'), require('imagekitio-react'), require('@babel/runtime/helpers/toConsumableArray'), require('react-image-gallery'), require('@react-icons/all-files/md/MdAddShoppingCart'), require('@react-icons/all-files/io5/IoBagHandleOutline'), require('@react-icons/all-files/bs/BsBag'), require('@react-icons/all-files/cg/CgShoppingBag'), require('@react-icons/all-files/fa/FaRegHeart'), require('@react-icons/all-files/fa/FaHeart'), require('@react-icons/all-files/fi/FiShoppingBag'), require('@react-icons/all-files/fi/FiShoppingCart'), require('@react-icons/all-files/ai/AiFillStar'), require('@react-icons/all-files/ai/AiOutlineStar'), require('@react-icons/all-files/fa/FaPlus'), require('@react-icons/all-files/fa/FaMinus'), require('@react-icons/all-files/fi/FiBox'), require('@react-icons/all-files/ri/RiArrowGoBackLine'), require('react-accessible-accordion'), require('react-share'), require('@react-icons/all-files/fi/FiMinus'), require('@react-icons/all-files/fi/FiPlus'), require('react-rating-stars-component'), require('@react-icons/all-files/fi/FiLayers'), require('@react-icons/all-files/hi/HiOutlinePlusCircle'), require('@react-icons/all-files/hi/HiOutlineMinusCircle'), require('react-textarea-autosize'), require('@react-icons/all-files/ai/AiOutlineClockCircle'), require('@react-icons/all-files/ai/AiOutlinePlus'), require('@react-icons/all-files/ai/AiOutlineCheck'), require('react-datepicker'), require('@react-icons/all-files/fi/FiCalendar'), require('@mui/system'), require('react-horizontal-scrolling-menu'), require('@mui/material'), require('@react-icons/all-files/hi/HiOutlinePhone'), require('@react-icons/all-files/ai/AiOutlineMail'), require('@react-icons/all-files/fa/FaShippingFast'), require('@react-icons/all-files/ri/RiSecurePaymentLine'), require('react-player'), require('@react-icons/all-files/ai/AiOutlineSecurityScan'), require('@react-icons/all-files/fa/FaStar'), require('@react-icons/all-files/io5/IoLocationSharp'), require('@react-icons/all-files/hi/HiOutlineChevronRight'), require('@react-icons/all-files/hi/HiOutlineChevronLeft'), require('@react-icons/all-files/go/GoGlobe'), require('@react-icons/all-files/vsc/VscGlobe'), require('react-bootstrap/Dropdown'), require('@babel/runtime/helpers/asyncToGenerator'), require('@babel/runtime/regenerator'), require('@react-icons/all-files/hi/HiUser'), require('@react-icons/all-files/gr/GrMail'), require('@react-icons/all-files/fi/FiCheckCircle'), require('@react-icons/all-files/bi/BiPhone'), require('react-phone-input-2'), require('@react-icons/all-files/bs/BsChevronLeft'), require('@react-icons/all-files/bs/BsChevronRight'), require('@react-icons/all-files/ri/RiArrowUpSLine'), require('@react-icons/all-files/ri/RiArrowDownSLine'), require('@react-icons/all-files/io/IoIosArrowRoundForward'), require('@react-icons/all-files/io/IoIosArrowRoundBack'), require('@react-icons/all-files/fi/FiChevronUp'), require('@react-icons/all-files/fi/FiChevronDown'), require('@react-icons/all-files/hi/HiOutlinePlus'), require('@react-icons/all-files/ai/AiOutlineMinus'), require('react-router-dom'), require('react-query'), require('@react-icons/all-files/io5/IoBagCheckOutline'), require('@react-icons/all-files/io5/IoBagRemoveOutline'), require('react-input-range'), require('react-intersection-observer'), require('@react-icons/all-files/fi/FiFilter'), require('@react-icons/all-files/fi/FiSliders'), require('@react-icons/all-files/fi/FiChevronLeft'), require('@react-icons/all-files/fi/FiChevronRight'), require('@react-icons/all-files/hi/HiOutlineArrowRight'), require('@react-icons/all-files/hi/HiOutlineArrowLeft'), require('react-paginate'), require('@react-icons/all-files/fa/FaFacebook'), require('@react-icons/all-files/ai/AiFillInstagram'), require('@react-icons/all-files/fa/FaWhatsapp'), require('@react-icons/all-files/bi/BiGlobe'), require('@react-icons/all-files/md/MdKeyboardArrowDown'), require('@react-icons/all-files/fa/FaMoneyBillWave'), require('@react-icons/all-files/bi/BiLogOutCircle'), require('@react-icons/all-files/bi/BiChevronDown'), require('@react-icons/all-files/bi/BiUser'), require('@react-icons/all-files/ai/AiOutlineLogin'), require('@react-icons/all-files/ai/AiOutlineUserAdd'), require('@react-icons/all-files/ri/RiSearchLine'), require('@react-icons/all-files/cg/CgMenuLeft'), require('@react-icons/all-files/cg/CgMenuRight'), require('@react-icons/all-files/hi/HiOutlineShoppingBag'), require('@react-icons/all-files/ri/RiHandbagLine'), require('@react-icons/all-files/ai/AiOutlineClose'), require('@react-icons/all-files/vsc/VscMenu'), require('@react-icons/all-files/vsc/VscHeart'), require('@react-icons/all-files/io5/IoSearchOutline'), require('@react-icons/all-files/ai/AiFillYoutube'), require('@react-icons/all-files/io5/IoLogoTiktok'), require('@react-icons/all-files/fa/FaLinkedinIn'), require('@react-icons/all-files/fi/FiMenu'), require('@react-icons/all-files/bs/BsChevronDown'), require('@react-icons/all-files/io5/IoClose'), require('@react-icons/all-files/bi/BiSearch'), require('@react-icons/all-files/fi/FiUser'), require('@react-icons/all-files/ai/AiOutlineHeart'), require('@react-icons/all-files/fi/FiPhone'), require('@react-icons/all-files/hi/HiMenuAlt4'), require('@react-icons/all-files/fi/FiSearch'), require('@react-icons/all-files/bs/BsSearch'), require('@react-icons/all-files/ai/AiOutlinePhone'), require('@react-icons/all-files/go/GoSearch'), require('@react-icons/all-files/ai/AiOutlineInstagram'), require('@react-icons/all-files/md/MdKeyboardArrowUp'), require('@react-icons/all-files/ri/RiUserSettingsLine'), require('@react-icons/all-files/hi/HiUserCircle'), require('@react-icons/all-files/bs/BsInfoCircle'), require('@react-icons/all-files/ai/AiFillPhone'), require('@react-icons/all-files/fa/FaTelegramPlane'), require('@react-icons/all-files/fa/FaPhoneAlt'), require('@react-icons/all-files/fa/FaPhone'), require('@react-icons/all-files/fi/FiGlobe'), require('@react-icons/all-files/fi/FiArrowUpRight'), require('@react-icons/all-files/bi/BiUserCircle'), require('@react-icons/all-files/fi/FiArrowUpLeft'), require('@react-icons/all-files/go/GoLocation'), require('@react-icons/all-files/fa/FaSnapchat'), require('@react-icons/all-files/ri/RiRoadMapLine'), require('@react-icons/all-files/hi/HiOutlineClock'), require('@react-icons/all-files/ai/AiOutlineLinkedin'), require('@react-icons/all-files/fa/FaPinterestP'), require('@react-icons/all-files/fa/FaTripadvisor'), require('@react-icons/all-files/fa/FaBehance'), require('@react-icons/all-files/fi/FiHome'), require('@react-icons/all-files/fa/FaArrowAltCircleRight'), require('@react-icons/all-files/fa/FaArrowAltCircleLeft'), require('react-select'), require('@react-icons/all-files/go/GoStar'), require('@react-icons/all-files/io/IoIosStar'), require('react-countdown-circle-timer'), require('react-background-slideshow'), require('@babel/runtime/helpers/extends'), require('react-slideshow-image'), require('@react-icons/all-files/hi/HiOutlineLocationMarker'), require('@react-icons/all-files/fi/FiPhoneCall'), require('@react-icons/all-files/fa/FaRegEye'), require('@react-icons/all-files/bs/BsArrowRight'), require('@react-icons/all-files/bs/BsArrowLeft'), require('@react-icons/all-files/bs/BsEye'), require('@react-icons/all-files/bi/BiTimeFive'), require('@react-icons/all-files/io/IoIosArrowUp')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define(['@babel/runtime/helpers/slicedToArray', 'react', '@babel/runtime/helpers/classCallCheck', '@babel/runtime/helpers/createClass', '@babel/runtime/helpers/possibleConstructorReturn', '@babel/runtime/helpers/getPrototypeOf', '@babel/runtime/helpers/inherits', '@babel/runtime/helpers/defineProperty', 'universal-cookie', 'react-cssfx-loading', 'glamor', '@react-oauth/google', 'jwt-decode', 'react-facebook-login/dist/facebook-login-render-props', '@react-icons/all-files/fa/FaFacebookF', '@react-icons/all-files/ai/AiOutlineUser', '@react-icons/all-files/io/IoMdClose', 'react-bootstrap', 'imagekitio-react', '@babel/runtime/helpers/toConsumableArray', 'react-image-gallery', '@react-icons/all-files/md/MdAddShoppingCart', '@react-icons/all-files/io5/IoBagHandleOutline', '@react-icons/all-files/bs/BsBag', '@react-icons/all-files/cg/CgShoppingBag', '@react-icons/all-files/fa/FaRegHeart', '@react-icons/all-files/fa/FaHeart', '@react-icons/all-files/fi/FiShoppingBag', '@react-icons/all-files/fi/FiShoppingCart', '@react-icons/all-files/ai/AiFillStar', '@react-icons/all-files/ai/AiOutlineStar', '@react-icons/all-files/fa/FaPlus', '@react-icons/all-files/fa/FaMinus', '@react-icons/all-files/fi/FiBox', '@react-icons/all-files/ri/RiArrowGoBackLine', 'react-accessible-accordion', 'react-share', '@react-icons/all-files/fi/FiMinus', '@react-icons/all-files/fi/FiPlus', 'react-rating-stars-component', '@react-icons/all-files/fi/FiLayers', '@react-icons/all-files/hi/HiOutlinePlusCircle', '@react-icons/all-files/hi/HiOutlineMinusCircle', 'react-textarea-autosize', '@react-icons/all-files/ai/AiOutlineClockCircle', '@react-icons/all-files/ai/AiOutlinePlus', '@react-icons/all-files/ai/AiOutlineCheck', 'react-datepicker', '@react-icons/all-files/fi/FiCalendar', '@mui/system', 'react-horizontal-scrolling-menu', '@mui/material', '@react-icons/all-files/hi/HiOutlinePhone', '@react-icons/all-files/ai/AiOutlineMail', '@react-icons/all-files/fa/FaShippingFast', '@react-icons/all-files/ri/RiSecurePaymentLine', 'react-player', '@react-icons/all-files/ai/AiOutlineSecurityScan', '@react-icons/all-files/fa/FaStar', '@react-icons/all-files/io5/IoLocationSharp', '@react-icons/all-files/hi/HiOutlineChevronRight', '@react-icons/all-files/hi/HiOutlineChevronLeft', '@react-icons/all-files/go/GoGlobe', '@react-icons/all-files/vsc/VscGlobe', 'react-bootstrap/Dropdown', '@babel/runtime/helpers/asyncToGenerator', '@babel/runtime/regenerator', '@react-icons/all-files/hi/HiUser', '@react-icons/all-files/gr/GrMail', '@react-icons/all-files/fi/FiCheckCircle', '@react-icons/all-files/bi/BiPhone', 'react-phone-input-2', '@react-icons/all-files/bs/BsChevronLeft', '@react-icons/all-files/bs/BsChevronRight', '@react-icons/all-files/ri/RiArrowUpSLine', '@react-icons/all-files/ri/RiArrowDownSLine', '@react-icons/all-files/io/IoIosArrowRoundForward', '@react-icons/all-files/io/IoIosArrowRoundBack', '@react-icons/all-files/fi/FiChevronUp', '@react-icons/all-files/fi/FiChevronDown', '@react-icons/all-files/hi/HiOutlinePlus', '@react-icons/all-files/ai/AiOutlineMinus', 'react-router-dom', 'react-query', '@react-icons/all-files/io5/IoBagCheckOutline', '@react-icons/all-files/io5/IoBagRemoveOutline', 'react-input-range', 'react-intersection-observer', '@react-icons/all-files/fi/FiFilter', '@react-icons/all-files/fi/FiSliders', '@react-icons/all-files/fi/FiChevronLeft', '@react-icons/all-files/fi/FiChevronRight', '@react-icons/all-files/hi/HiOutlineArrowRight', '@react-icons/all-files/hi/HiOutlineArrowLeft', 'react-paginate', '@react-icons/all-files/fa/FaFacebook', '@react-icons/all-files/ai/AiFillInstagram', '@react-icons/all-files/fa/FaWhatsapp', '@react-icons/all-files/bi/BiGlobe', '@react-icons/all-files/md/MdKeyboardArrowDown', '@react-icons/all-files/fa/FaMoneyBillWave', '@react-icons/all-files/bi/BiLogOutCircle', '@react-icons/all-files/bi/BiChevronDown', '@react-icons/all-files/bi/BiUser', '@react-icons/all-files/ai/AiOutlineLogin', '@react-icons/all-files/ai/AiOutlineUserAdd', '@react-icons/all-files/ri/RiSearchLine', '@react-icons/all-files/cg/CgMenuLeft', '@react-icons/all-files/cg/CgMenuRight', '@react-icons/all-files/hi/HiOutlineShoppingBag', '@react-icons/all-files/ri/RiHandbagLine', '@react-icons/all-files/ai/AiOutlineClose', '@react-icons/all-files/vsc/VscMenu', '@react-icons/all-files/vsc/VscHeart', '@react-icons/all-files/io5/IoSearchOutline', '@react-icons/all-files/ai/AiFillYoutube', '@react-icons/all-files/io5/IoLogoTiktok', '@react-icons/all-files/fa/FaLinkedinIn', '@react-icons/all-files/fi/FiMenu', '@react-icons/all-files/bs/BsChevronDown', '@react-icons/all-files/io5/IoClose', '@react-icons/all-files/bi/BiSearch', '@react-icons/all-files/fi/FiUser', '@react-icons/all-files/ai/AiOutlineHeart', '@react-icons/all-files/fi/FiPhone', '@react-icons/all-files/hi/HiMenuAlt4', '@react-icons/all-files/fi/FiSearch', '@react-icons/all-files/bs/BsSearch', '@react-icons/all-files/ai/AiOutlinePhone', '@react-icons/all-files/go/GoSearch', '@react-icons/all-files/ai/AiOutlineInstagram', '@react-icons/all-files/md/MdKeyboardArrowUp', '@react-icons/all-files/ri/RiUserSettingsLine', '@react-icons/all-files/hi/HiUserCircle', '@react-icons/all-files/bs/BsInfoCircle', '@react-icons/all-files/ai/AiFillPhone', '@react-icons/all-files/fa/FaTelegramPlane', '@react-icons/all-files/fa/FaPhoneAlt', '@react-icons/all-files/fa/FaPhone', '@react-icons/all-files/fi/FiGlobe', '@react-icons/all-files/fi/FiArrowUpRight', '@react-icons/all-files/bi/BiUserCircle', '@react-icons/all-files/fi/FiArrowUpLeft', '@react-icons/all-files/go/GoLocation', '@react-icons/all-files/fa/FaSnapchat', '@react-icons/all-files/ri/RiRoadMapLine', '@react-icons/all-files/hi/HiOutlineClock', '@react-icons/all-files/ai/AiOutlineLinkedin', '@react-icons/all-files/fa/FaPinterestP', '@react-icons/all-files/fa/FaTripadvisor', '@react-icons/all-files/fa/FaBehance', '@react-icons/all-files/fi/FiHome', '@react-icons/all-files/fa/FaArrowAltCircleRight', '@react-icons/all-files/fa/FaArrowAltCircleLeft', 'react-select', '@react-icons/all-files/go/GoStar', '@react-icons/all-files/io/IoIosStar', 'react-countdown-circle-timer', 'react-background-slideshow', '@babel/runtime/helpers/extends', 'react-slideshow-image', '@react-icons/all-files/hi/HiOutlineLocationMarker', '@react-icons/all-files/fi/FiPhoneCall', '@react-icons/all-files/fa/FaRegEye', '@react-icons/all-files/bs/BsArrowRight', '@react-icons/all-files/bs/BsArrowLeft', '@react-icons/all-files/bs/BsEye', '@react-icons/all-files/bi/BiTimeFive', '@react-icons/all-files/io/IoIosArrowUp'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.tabexseriescomponents = factory(global._slicedToArray, global.React, global._classCallCheck, global._createClass, global._possibleConstructorReturn, global._getPrototypeOf, global._inherits, global._defineProperty, global.Cookies, global.reactCssfxLoading, global.glamor, global.google, global.jwtDecode, global.FacebookLogin, global.FaFacebookF, global.AiOutlineUser, global.IoMdClose, global.reactBootstrap, global.imagekitioReact, global._toConsumableArray, global.ImageGallery, global.MdAddShoppingCart, global.IoBagHandleOutline, global.BsBag, global.CgShoppingBag, global.FaRegHeart, global.FaHeart$1, global.FiShoppingBag, global.FiShoppingCart, global.AiFillStar$1, global.AiOutlineStar, global.FaPlus, global.FaMinus, global.FiBox$1, global.RiArrowGoBackLine, global.reactAccessibleAccordion, global.reactShare, global.FiMinus, global.FiPlus, global.ReactStars, global.FiLayers, global.HiOutlinePlusCircle, null, global.TextareaAutosize, global.AiOutlineClockCircle, global.AiOutlinePlus, global.AiOutlineCheck, global.DatePicker, global.FiCalendar, null, global.reactHorizontalScrollingMenu, global.material, global.HiOutlinePhone, global.AiOutlineMail, global.FaShippingFast, global.RiSecurePaymentLine, global.ReactPlayer, global.AiOutlineSecurityScan, global.FaStar, global.IoLocationSharp, global.HiOutlineChevronRight, global.HiOutlineChevronLeft, global.GoGlobe, global.VscGlobe, global.Dropdown, global._asyncToGenerator, global._regeneratorRuntime, global.HiUser, global.GrMail, global.FiCheckCircle, global.BiPhone, global.PhoneInput, global.BsChevronLeft, global.BsChevronRight, null, null, null, null, global.FiChevronUp, global.FiChevronDown, global.HiOutlinePlus, global.AiOutlineMinus, null, null, global.IoBagCheckOutline, global.IoBagRemoveOutline, global.InputRange, global.reactIntersectionObserver, global.FiFilter, global.FiSliders, global.FiChevronLeft, global.FiChevronRight, global.HiOutlineArrowRight, global.HiOutlineArrowLeft, global.ReactPaginate, global.FaFacebook, global.AiFillInstagram, global.FaWhatsapp, global.BiGlobe, global.MdKeyboardArrowDown, global.FaMoneyBillWave, global.BiLogOutCircle, global.BiChevronDown, global.BiUser, global.AiOutlineLogin, global.AiOutlineUserAdd, global.RiSearchLine, global.CgMenuLeft, global.CgMenuRight, global.HiOutlineShoppingBag, global.RiHandbagLine, global.AiOutlineClose, global.VscMenu, global.VscHeart, global.IoSearchOutline, global.AiFillYoutube, global.IoLogoTiktok, global.FaLinkedinIn, global.FiMenu, global.BsChevronDown, global.IoClose, global.BiSearch, global.FiUser, global.AiOutlineHeart, global.FiPhone, global.HiMenuAlt4, global.FiSearch, global.BsSearch, global.AiOutlinePhone, global.GoSearch, global.AiOutlineInstagram, global.MdKeyboardArrowUp, global.RiUserSettingsLine, global.HiUserCircle, global.BsInfoCircle, global.AiFillPhone, global.FaTelegramPlane, global.FaPhoneAlt, global.FaPhone, global.FiGlobe, global.FiArrowUpRight, global.BiUserCircle, global.FiArrowUpLeft, global.GoLocation, global.FaSnapchat, global.RiRoadMapLine, global.HiOutlineClock, global.AiOutlineLinkedin, global.FaPinterestP, global.FaTripadvisor, global.FaBehance, global.FiHome, global.FaArrowAltCircleRight, global.FaArrowAltCircleLeft, global.Select$5, global.GoStar, global.IoIosStar, global.reactCountdownCircleTimer, global.BackgroundSlideshow, global._extends, global.reactSlideshowImage, global.HiOutlineLocationMarker, global.FiPhoneCall, global.FaRegEye, global.BsArrowRight, global.BsArrowLeft, global.BsEye, global.BiTimeFive, global.IoIosArrowUp));
|
|
5
|
+
})(this, (function (_slicedToArray, React, _classCallCheck, _createClass, _possibleConstructorReturn, _getPrototypeOf, _inherits, _defineProperty, Cookies, reactCssfxLoading, glamor, google, jwtDecode, FacebookLogin, FaFacebookF, AiOutlineUser, IoMdClose, reactBootstrap, imagekitioReact, _toConsumableArray, ImageGallery, MdAddShoppingCart, IoBagHandleOutline, BsBag, CgShoppingBag, FaRegHeart, FaHeart$1, FiShoppingBag, FiShoppingCart, AiFillStar$1, AiOutlineStar, FaPlus, FaMinus, FiBox$1, RiArrowGoBackLine, reactAccessibleAccordion, reactShare, FiMinus, FiPlus, ReactStars, FiLayers, HiOutlinePlusCircle, HiOutlineMinusCircle, TextareaAutosize, AiOutlineClockCircle, AiOutlinePlus, AiOutlineCheck, DatePicker, FiCalendar, system, reactHorizontalScrollingMenu, material, HiOutlinePhone, AiOutlineMail, FaShippingFast, RiSecurePaymentLine, ReactPlayer, AiOutlineSecurityScan, FaStar, IoLocationSharp, HiOutlineChevronRight, HiOutlineChevronLeft, GoGlobe, VscGlobe, Dropdown, _asyncToGenerator, _regeneratorRuntime, HiUser, GrMail, FiCheckCircle, BiPhone, PhoneInput, BsChevronLeft, BsChevronRight, RiArrowUpSLine, RiArrowDownSLine, IoIosArrowRoundForward, IoIosArrowRoundBack, FiChevronUp, FiChevronDown, HiOutlinePlus, AiOutlineMinus, reactRouterDom, reactQuery, IoBagCheckOutline, IoBagRemoveOutline, InputRange, reactIntersectionObserver, FiFilter, FiSliders, FiChevronLeft, FiChevronRight, HiOutlineArrowRight, HiOutlineArrowLeft, ReactPaginate, FaFacebook, AiFillInstagram, FaWhatsapp, BiGlobe, MdKeyboardArrowDown, FaMoneyBillWave, BiLogOutCircle, BiChevronDown, BiUser, AiOutlineLogin, AiOutlineUserAdd, RiSearchLine, CgMenuLeft, CgMenuRight, HiOutlineShoppingBag, RiHandbagLine, AiOutlineClose, VscMenu, VscHeart, IoSearchOutline, AiFillYoutube, IoLogoTiktok, FaLinkedinIn, FiMenu, BsChevronDown, IoClose, BiSearch, FiUser, AiOutlineHeart, FiPhone, HiMenuAlt4, FiSearch, BsSearch, AiOutlinePhone, GoSearch, AiOutlineInstagram, MdKeyboardArrowUp, RiUserSettingsLine, HiUserCircle, BsInfoCircle, AiFillPhone, FaTelegramPlane, FaPhoneAlt, FaPhone, FiGlobe, FiArrowUpRight, BiUserCircle, FiArrowUpLeft, GoLocation, FaSnapchat, RiRoadMapLine, HiOutlineClock, AiOutlineLinkedin, FaPinterestP, FaTripadvisor, FaBehance, FiHome, FaArrowAltCircleRight, FaArrowAltCircleLeft, Select$5, GoStar, IoIosStar, reactCountdownCircleTimer, BackgroundSlideshow, _extends, reactSlideshowImage, HiOutlineLocationMarker, FiPhoneCall, FaRegEye, BsArrowRight, BsArrowLeft, BsEye, BiTimeFive, IoIosArrowUp) { 'use strict';
|
|
6
6
|
|
|
7
7
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
8
8
|
|
|
@@ -1139,7 +1139,7 @@
|
|
|
1139
1139
|
backgroundColor: state.isSelected ? '' : '',
|
|
1140
1140
|
padding: 5,
|
|
1141
1141
|
textTransform: 'capitalize',
|
|
1142
|
-
color: state.isSelected ? '#eac435' : '
|
|
1142
|
+
color: state.isSelected ? '#eac435' : '#000000',
|
|
1143
1143
|
transition: '.3s',
|
|
1144
1144
|
'&:hover': {
|
|
1145
1145
|
// color: '#eac435',
|
|
@@ -1166,6 +1166,11 @@
|
|
|
1166
1166
|
// color: '#eac435',
|
|
1167
1167
|
}
|
|
1168
1168
|
});
|
|
1169
|
+
},
|
|
1170
|
+
placeholder: function placeholder(provided, state) {
|
|
1171
|
+
return _objectSpread$2z(_objectSpread$2z({}, provided), {}, {
|
|
1172
|
+
color: '#000000'
|
|
1173
|
+
});
|
|
1169
1174
|
}
|
|
1170
1175
|
};
|
|
1171
1176
|
var defaultstyleswhite = {
|
|
@@ -1286,7 +1291,8 @@
|
|
|
1286
1291
|
},
|
|
1287
1292
|
placeholder: function placeholder(provided, state) {
|
|
1288
1293
|
return _objectSpread$2z(_objectSpread$2z({}, provided), {}, {
|
|
1289
|
-
textAlign: 'right'
|
|
1294
|
+
textAlign: 'right',
|
|
1295
|
+
color: '#000000'
|
|
1290
1296
|
});
|
|
1291
1297
|
}
|
|
1292
1298
|
};
|
|
@@ -4302,10 +4308,27 @@
|
|
|
4302
4308
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
4303
4309
|
"class": TabsStyles.inputfield_label + ' m-0 pb-2 '
|
|
4304
4310
|
}, lang.reservationdate, ":")), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
4305
|
-
"class": "col-lg-12 mb-3"
|
|
4311
|
+
"class": "col-lg-12 mb-3",
|
|
4312
|
+
style: {
|
|
4313
|
+
position: 'relative',
|
|
4314
|
+
height: '40px',
|
|
4315
|
+
borderRadius: sectionproperties.inputfieldborderradius + 'px',
|
|
4316
|
+
fontSize: sectionproperties.inputfieldfontsize + 'px',
|
|
4317
|
+
color: sectionproperties.inputfieldcolor,
|
|
4318
|
+
backgroundColor: sectionproperties.input_bgcolor,
|
|
4319
|
+
border: sectionproperties.inputfieldborderWidth + 'px solid ' + sectionproperties.inputfieldborderColor
|
|
4320
|
+
}
|
|
4321
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
4322
|
+
"class": "w-100 px-2 h-100 allcentered"
|
|
4306
4323
|
}, /*#__PURE__*/React__default["default"].createElement("input", {
|
|
4307
4324
|
type: "date",
|
|
4308
|
-
"class":
|
|
4325
|
+
"class": ' w-100 allcentered pl-1 pr-1 ',
|
|
4326
|
+
style: {
|
|
4327
|
+
background: 'transparent',
|
|
4328
|
+
borderWidth: 0,
|
|
4329
|
+
height: '100%',
|
|
4330
|
+
zIndex: 2
|
|
4331
|
+
},
|
|
4309
4332
|
min: fetchProductInfoQueryContext.data.data.productinfo.serviceinfo.reservationstarts,
|
|
4310
4333
|
max: fetchProductInfoQueryContext.data.data.productinfo.serviceinfo.reservationends,
|
|
4311
4334
|
onChange: function onChange(event) {
|
|
@@ -4327,7 +4350,19 @@
|
|
|
4327
4350
|
}
|
|
4328
4351
|
});
|
|
4329
4352
|
}
|
|
4330
|
-
})
|
|
4353
|
+
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
4354
|
+
"class": "h-100 allcentered",
|
|
4355
|
+
style: {
|
|
4356
|
+
position: 'absolute',
|
|
4357
|
+
right: 15,
|
|
4358
|
+
bottom: 0,
|
|
4359
|
+
top: 0,
|
|
4360
|
+
zIndex: 1
|
|
4361
|
+
}
|
|
4362
|
+
}, /*#__PURE__*/React__default["default"].createElement(FiCalendar.FiCalendar, {
|
|
4363
|
+
color: sectionproperties.inputfieldcolor,
|
|
4364
|
+
size: 20
|
|
4365
|
+
})))))), slots.length != 0 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
4331
4366
|
"class": "col-lg-12 col-md-12 col-sm-12"
|
|
4332
4367
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
4333
4368
|
"class": TabsStyles.inputfield_label + ' p-0 d-flex justify-content-start m-0 '
|
|
@@ -9152,7 +9187,7 @@
|
|
|
9152
9187
|
color: sectionproperties.paymenttextcolor,
|
|
9153
9188
|
fontWeight: sectionproperties.paymenttextfontweight
|
|
9154
9189
|
}
|
|
9155
|
-
},
|
|
9190
|
+
}, langdetect == 'en' ? sectionproperties.onlinepaymenttexten : sectionproperties.onlinepaymenttextar)), fetchorderhistoryQueryContext.data.data.ordershistory[orderindex].paymentmethod == 'cod' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
9156
9191
|
className: "row m-0 w-100 mb-2 d-flex align-items-center pl-3 pr-3"
|
|
9157
9192
|
}, /*#__PURE__*/React__default["default"].createElement("img", {
|
|
9158
9193
|
src: 'https://tabex-co.com/storage/StaticImages/cod.png',
|
|
@@ -11876,7 +11911,7 @@
|
|
|
11876
11911
|
d: "M5,10.75 L8.5,14.25 L19.4,2.3 C18.8333333,1.43333333 18.0333333,1 17,1 L4,1 C2.35,1 1,2.35 1,4 L1,17 C1,18.65 2.35,20 4,20 L17,20 C18.65,20 20,18.65 20,17 L20,7.99769186"
|
|
11877
11912
|
})), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
11878
11913
|
className: "".concat(formstyles.checkbox_label) + ' ml-2 mb-0 wordbreak cursor-pointer mr-2 '
|
|
11879
|
-
},
|
|
11914
|
+
}, ' ', langdetect == 'en' ? sectionproperties.onlinepaymenttexten : sectionproperties.onlinepaymenttextar))), authdetailsContext.instinfo.acceptValuCard == 1 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
11880
11915
|
className: "col-xl-4 col-lg-4 col-md-12 mb-3"
|
|
11881
11916
|
}, /*#__PURE__*/React__default["default"].createElement("label", {
|
|
11882
11917
|
className: langdetect == 'en' ? "".concat(formstyles.checkbox, " ").concat(checkoutstyles.checkbox, " ") + ' d-flex mb-0 ' : "".concat(formstyles.checkbox, " ").concat(formstyles.checkboxtranslated, " ").concat(checkoutstyles.checkbox, " ") + ' d-flex mb-0 '
|
|
@@ -15812,7 +15847,7 @@
|
|
|
15812
15847
|
_useState20 = _slicedToArray__default["default"](_useState19, 2),
|
|
15813
15848
|
raterangevalue = _useState20[0],
|
|
15814
15849
|
setraterangevalue = _useState20[1];
|
|
15815
|
-
|
|
15850
|
+
// const timeoutRef = React.useRef(null);
|
|
15816
15851
|
var _useState21 = React.useState(''),
|
|
15817
15852
|
_useState22 = _slicedToArray__default["default"](_useState21, 2);
|
|
15818
15853
|
_useState22[0];
|
|
@@ -17077,6 +17112,16 @@
|
|
|
17077
17112
|
_useState30 = _slicedToArray__default["default"](_useState29, 2),
|
|
17078
17113
|
checked = _useState30[0],
|
|
17079
17114
|
setChecked = _useState30[1];
|
|
17115
|
+
var _useState31 = React.useState({
|
|
17116
|
+
min: 0,
|
|
17117
|
+
max: 5
|
|
17118
|
+
}),
|
|
17119
|
+
_useState32 = _slicedToArray__default["default"](_useState31, 2),
|
|
17120
|
+
price_rangevalue = _useState32[0],
|
|
17121
|
+
setprice_rangevalue = _useState32[1];
|
|
17122
|
+
var timeoutRef = React__default["default"].useRef(null);
|
|
17123
|
+
var timeoutRef_price = React__default["default"].useRef(null);
|
|
17124
|
+
var timeoutRef__range_price = React__default["default"].useRef(null);
|
|
17080
17125
|
var PriceInputRangeFilter = function PriceInputRangeFilter() {
|
|
17081
17126
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17082
17127
|
"class": "row m-0 w-100 mb-3 mt-2"
|
|
@@ -17096,30 +17141,45 @@
|
|
|
17096
17141
|
}
|
|
17097
17142
|
// maxValue={parseInt(sectionproperties.filterpricemaxvalue)}
|
|
17098
17143
|
// minValue={parseInt(sectionproperties.filterpriceminvalue)}
|
|
17099
|
-
// value={temppricevalue}
|
|
17100
17144
|
,
|
|
17101
|
-
|
|
17102
|
-
|
|
17103
|
-
|
|
17104
|
-
|
|
17105
|
-
|
|
17106
|
-
// if (attritem.id == item.id) {
|
|
17107
|
-
// tempproductfeatuesarr[attrindex].value = e.min;
|
|
17108
|
-
// tempproductfeatuesarr[attrindex].valuemax = e.max;
|
|
17109
|
-
// isattrexists = true;
|
|
17110
|
-
// }
|
|
17111
|
-
// });
|
|
17112
|
-
// if (isattrexists == false) {
|
|
17113
|
-
// tempproductfeatuesarr.push({
|
|
17114
|
-
// id: item.id,
|
|
17115
|
-
// value: e.min,
|
|
17116
|
-
// valuemax: e.max,
|
|
17117
|
-
// });
|
|
17118
|
-
// }
|
|
17119
|
-
// setproductfeatuesarr([...tempproductfeatuesarr]);
|
|
17145
|
+
maxValue: parseInt(5000),
|
|
17146
|
+
minValue: parseInt(0),
|
|
17147
|
+
value: price_rangevalue,
|
|
17148
|
+
onChange: function onChange(value) {
|
|
17149
|
+
setprice_rangevalue(_objectSpread$2e({}, value));
|
|
17120
17150
|
}
|
|
17121
17151
|
})));
|
|
17122
17152
|
};
|
|
17153
|
+
React__default["default"].useEffect(function () {
|
|
17154
|
+
if (timeoutRef_price.current !== null) {
|
|
17155
|
+
clearTimeout(timeoutRef_price.current);
|
|
17156
|
+
}
|
|
17157
|
+
timeoutRef_price.current = setTimeout(function () {
|
|
17158
|
+
if (pricevalue2.min != '' && pricevalue2.max != '') {
|
|
17159
|
+
var tempfetchproductsfilerobjcontext = _objectSpread$2e({}, ProductFilterObjContext);
|
|
17160
|
+
tempfetchproductsfilerobjcontext.price_min = pricevalue2.min;
|
|
17161
|
+
tempfetchproductsfilerobjcontext.price_max = pricevalue2.max;
|
|
17162
|
+
tempfetchproductsfilerobjcontext.page = 0;
|
|
17163
|
+
setProductFilterObjContext(_objectSpread$2e({}, tempfetchproductsfilerobjcontext));
|
|
17164
|
+
// routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, encodeURIComponent(JSON.stringify(tempfetchproductsfilerobjcontext)));
|
|
17165
|
+
}
|
|
17166
|
+
}, 500);
|
|
17167
|
+
}, [pricevalue2]);
|
|
17168
|
+
React__default["default"].useEffect(function () {
|
|
17169
|
+
if (timeoutRef__range_price.current !== null) {
|
|
17170
|
+
clearTimeout(timeoutRef__range_price.current);
|
|
17171
|
+
}
|
|
17172
|
+
timeoutRef__range_price.current = setTimeout(function () {
|
|
17173
|
+
if (price_rangevalue.min != '' && price_rangevalue.max != '') {
|
|
17174
|
+
var tempfetchproductsfilerobjcontext = _objectSpread$2e({}, ProductFilterObjContext);
|
|
17175
|
+
tempfetchproductsfilerobjcontext.price_min = price_rangevalue.min;
|
|
17176
|
+
tempfetchproductsfilerobjcontext.price_max = price_rangevalue.max;
|
|
17177
|
+
tempfetchproductsfilerobjcontext.page = 0;
|
|
17178
|
+
setProductFilterObjContext(_objectSpread$2e({}, tempfetchproductsfilerobjcontext));
|
|
17179
|
+
// routingcountext(StaticPagesLinksContext.GeneralProductsComponent, true, encodeURIComponent(JSON.stringify(tempfetchproductsfilerobjcontext)));
|
|
17180
|
+
}
|
|
17181
|
+
}, 500);
|
|
17182
|
+
}, [price_rangevalue]);
|
|
17123
17183
|
var PriceFromToFilter = function PriceFromToFilter() {
|
|
17124
17184
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17125
17185
|
"class": "row m-0 w-100 mb-3 mt-2"
|
|
@@ -17181,16 +17241,31 @@
|
|
|
17181
17241
|
};
|
|
17182
17242
|
var ClearFilterButton = function ClearFilterButton() {
|
|
17183
17243
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17184
|
-
"class": "col-lg-12"
|
|
17244
|
+
"class": "col-lg-12 mb-4"
|
|
17185
17245
|
}, /*#__PURE__*/React__default["default"].createElement("button", {
|
|
17186
17246
|
"class": "w-100 bg-primary bg-secondaryhover",
|
|
17187
17247
|
style: {
|
|
17188
17248
|
height: 40,
|
|
17189
17249
|
borderRadius: 100
|
|
17250
|
+
},
|
|
17251
|
+
onClick: function onClick() {
|
|
17252
|
+
var tempfetchproductsfilerobjcontext = _objectSpread$2e({}, ProductFilterObjContext);
|
|
17253
|
+
tempfetchproductsfilerobjcontext.FilterOptions = [];
|
|
17254
|
+
delete tempfetchproductsfilerobjcontext.price_max;
|
|
17255
|
+
delete tempfetchproductsfilerobjcontext.price_min;
|
|
17256
|
+
delete tempfetchproductsfilerobjcontext.minrate;
|
|
17257
|
+
delete tempfetchproductsfilerobjcontext.maxrate;
|
|
17258
|
+
delete tempfetchproductsfilerobjcontext.sortprice;
|
|
17259
|
+
delete tempfetchproductsfilerobjcontext.sortdates;
|
|
17260
|
+
delete tempfetchproductsfilerobjcontext.prod_featruesar;
|
|
17261
|
+
tempfetchproductsfilerobjcontext.page = 0;
|
|
17262
|
+
// tempfetchproductsfilerobjcontext.collections = [];
|
|
17263
|
+
|
|
17264
|
+
setProductFilterObjContext(_objectSpread$2e({}, tempfetchproductsfilerobjcontext));
|
|
17190
17265
|
}
|
|
17191
17266
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
17192
17267
|
"class": "m-0 p-0 text-white"
|
|
17193
|
-
},
|
|
17268
|
+
}, langdetect == 'en' ? 'Clear Filter' : 'حذف')));
|
|
17194
17269
|
};
|
|
17195
17270
|
// const queryParameters = new URLSearchParams(window.location.search);
|
|
17196
17271
|
// useEffect(() => {
|
|
@@ -17726,7 +17801,7 @@
|
|
|
17726
17801
|
"class": "row m-0 w-100"
|
|
17727
17802
|
}, CollectionsFilter()), sectionproperties.showdynamicfilter == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17728
17803
|
"class": "row m-0 w-100"
|
|
17729
|
-
}, DynamicFilter()), sectionproperties.showvariantsfilter == 'Show' && InstFilters()))))))), props.typeprops == 'vertical' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17804
|
+
}, DynamicFilter()), sectionproperties.showvariantsfilter == 'Show' && InstFilters())), ClearFilterButton()))))), props.typeprops == 'vertical' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17730
17805
|
className: 'col-lg-12 p-0 w-100 filter mt-md-0 d-md-none'
|
|
17731
17806
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
17732
17807
|
className: "".concat(filterstyles.filterslider_container) + ' pb-md-5 ',
|