tabexseriescomponents 0.50.125 → 0.50.127

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 CHANGED
@@ -11032,6 +11032,30 @@ var Compare = function Compare(props) {
11032
11032
  return _ref.apply(this, arguments);
11033
11033
  };
11034
11034
  }();
11035
+ var removecompareproduct = function removecompareproduct(productId) {
11036
+ // Replace this with a real ID (e.g., passed via props)
11037
+ var key = 'comparedProducts';
11038
+
11039
+ // Get current list from localStorage
11040
+ var existing = JSON.parse(localStorage.getItem(key)) || [];
11041
+
11042
+ // Check if the product is already in the list
11043
+ var index = existing.indexOf(productId);
11044
+ if (index > -1) {
11045
+ // If exists, remove it (toggle off)
11046
+ existing.splice(index, 1);
11047
+ setIsCompared(false);
11048
+ } else {
11049
+ // If not, add it (toggle on)
11050
+
11051
+ existing.push(productId);
11052
+ setIsCompared(true);
11053
+ }
11054
+
11055
+ // Update localStorage
11056
+ localStorage.setItem(key, JSON.stringify(existing));
11057
+ window.location.reload();
11058
+ };
11035
11059
  React.useEffect(function () {
11036
11060
  var runcomparefunc = /*#__PURE__*/function () {
11037
11061
  var _ref2 = _asyncToGenerator__default["default"](/*#__PURE__*/_regeneratorRuntime__default["default"].mark(function _callee2() {
@@ -11109,7 +11133,17 @@ var Compare = function Compare(props) {
11109
11133
  style: {
11110
11134
  textAlign: langdetect != 'ar' ? 'left' : 'right'
11111
11135
  }
11112
- }, lang.price)), /*#__PURE__*/React__default["default"].createElement("tbody", null, productDataList.map(function (item, index) {
11136
+ }, lang.price), /*#__PURE__*/React__default["default"].createElement("th", {
11137
+ className: 'font-weight-500 font-14 text-uppercase text-light mw-150 mw-md-300',
11138
+ style: {
11139
+ textAlign: langdetect != 'ar' ? 'left' : 'right'
11140
+ }
11141
+ }), /*#__PURE__*/React__default["default"].createElement("th", {
11142
+ className: 'font-weight-500 font-14 text-uppercase text-light mw-150 mw-md-300',
11143
+ style: {
11144
+ textAlign: langdetect != 'ar' ? 'left' : 'right'
11145
+ }
11146
+ })), /*#__PURE__*/React__default["default"].createElement("tbody", null, productDataList.map(function (item, index) {
11113
11147
  return /*#__PURE__*/React__default["default"].createElement("tr", null, /*#__PURE__*/React__default["default"].createElement("td", null, /*#__PURE__*/React__default["default"].createElement("div", {
11114
11148
  style: {
11115
11149
  width: '70%',
@@ -11150,7 +11184,21 @@ var Compare = function Compare(props) {
11150
11184
  color: '#000',
11151
11185
  fontSize: '14px'
11152
11186
  }
11153
- }, item.defaultprice));
11187
+ }, item.defaultprice), /*#__PURE__*/React__default["default"].createElement("td", {
11188
+ style: {
11189
+ color: '#000',
11190
+ fontSize: '14px'
11191
+ },
11192
+ onClick: function onClick() {}
11193
+ }, lang.addtocart), /*#__PURE__*/React__default["default"].createElement("td", {
11194
+ style: {
11195
+ color: '#000',
11196
+ fontSize: '14px'
11197
+ },
11198
+ onClick: function onClick() {
11199
+ removecompareproduct(item.productid);
11200
+ }
11201
+ }, lang.remove));
11154
11202
  })))));
11155
11203
  };
11156
11204
 
@@ -27866,7 +27914,7 @@ var SocialMediaSection = function SocialMediaSection(props) {
27866
27914
  function ownKeys$27(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; }
27867
27915
  function _objectSpread$27(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$27(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$27(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
27868
27916
  var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
27869
- var _authdetailsContext$i4, _authdetailsContext$i5, _authdetailsContext$i6, _authdetailsContext$i7, _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i1, _authdetailsContext$i10, _authdetailsContext$i14, _authdetailsContext$i15, _authdetailsContext$i16, _authdetailsContext$i17, _authdetailsContext$i18, _authdetailsContext$i19, _authdetailsContext$i20, _authdetailsContext$i21, _authdetailsContext$i22, _authdetailsContext$i23, _authdetailsContext$i24, _authdetailsContext$i25, _authdetailsContext$i26, _authdetailsContext$i27, _authdetailsContext$i28;
27917
+ var _authdetailsContext$i4, _authdetailsContext$i5, _authdetailsContext$i6, _authdetailsContext$i7, _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i1, _authdetailsContext$i10, _authdetailsContext$i14, _authdetailsContext$i15, _authdetailsContext$i16, _authdetailsContext$i17, _authdetailsContext$i18, _authdetailsContext$i19, _authdetailsContext$i20, _authdetailsContext$i21, _authdetailsContext$i22, _authdetailsContext$i23, _authdetailsContext$i24, _authdetailsContext$i25, _authdetailsContext$i26, _authdetailsContext$i27, _authdetailsContext$i28, _authdetailsContext$i29, _authdetailsContext$i30, _authdetailsContext$i31;
27870
27918
  var actions = props.actions;
27871
27919
  var LogoutMutationContext = props.actions.LogoutMutationContext;
27872
27920
  var setsidecartnavshowcontext = props.actions.setsidecartnavshowcontext;
@@ -29515,6 +29563,25 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
29515
29563
  style: {
29516
29564
  borderColor: sectionproperties.resp_header_separatorbg
29517
29565
  }
29566
+ }))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i16 = authdetailsContext.instinfo) === null || _authdetailsContext$i16 === void 0 ? void 0 : _authdetailsContext$i16.contactinfo.instid) == '67d6bda67adf6' && /*#__PURE__*/React__default["default"].createElement("div", {
29567
+ className: "row m-0 w-100 anim"
29568
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
29569
+ className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start my-1"
29570
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
29571
+ onClick: function onClick() {
29572
+ setopenmenuCanvas(false);
29573
+ routingcountext(StaticPagesLinksContext.Compare);
29574
+ setmenuactive(false);
29575
+ }
29576
+ }, /*#__PURE__*/React__default["default"].createElement("p", {
29577
+ className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 '
29578
+ }, lang.compare))), /*#__PURE__*/React__default["default"].createElement("div", {
29579
+ className: "col-lg-12 p-0"
29580
+ }, /*#__PURE__*/React__default["default"].createElement("hr", {
29581
+ className: "mt-3 mb-3",
29582
+ style: {
29583
+ borderColor: sectionproperties.resp_header_separatorbg
29584
+ }
29518
29585
  }))), templateproperties_context.separatepolicies == 'No' && templateproperties_context.showpolicies == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
29519
29586
  className: "row m-0 w-100 anim"
29520
29587
  }, /*#__PURE__*/React__default["default"].createElement("div", {
@@ -29629,7 +29696,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
29629
29696
  style: {
29630
29697
  borderColor: sectionproperties.resp_header_separatorbg
29631
29698
  }
29632
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i16 = authdetailsContext.instinfo) === null || _authdetailsContext$i16 === void 0 ? void 0 : _authdetailsContext$i16.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
29699
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i17 = authdetailsContext.instinfo) === null || _authdetailsContext$i17 === void 0 ? void 0 : _authdetailsContext$i17.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
29633
29700
  className: "row m-0 w-100 anim"
29634
29701
  }, /*#__PURE__*/React__default["default"].createElement("div", {
29635
29702
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start my-1"
@@ -29648,7 +29715,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
29648
29715
  style: {
29649
29716
  borderColor: sectionproperties.resp_header_separatorbg
29650
29717
  }
29651
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i17 = authdetailsContext.instinfo) === null || _authdetailsContext$i17 === void 0 ? void 0 : _authdetailsContext$i17.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
29718
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i18 = authdetailsContext.instinfo) === null || _authdetailsContext$i18 === void 0 ? void 0 : _authdetailsContext$i18.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
29652
29719
  className: "row m-0 w-100 anim"
29653
29720
  }, /*#__PURE__*/React__default["default"].createElement("div", {
29654
29721
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start my-1"
@@ -29942,9 +30009,9 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
29942
30009
  routingcountext(StaticPagesLinksContext.Wishlist);
29943
30010
  setopenCnvas(false);
29944
30011
  }
29945
- }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i18 = authdetailsContext.instinfo) === null || _authdetailsContext$i18 === void 0 ? void 0 : _authdetailsContext$i18.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
30012
+ }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i19 = authdetailsContext.instinfo) === null || _authdetailsContext$i19 === void 0 ? void 0 : _authdetailsContext$i19.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
29946
30013
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
29947
- }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i19 = authdetailsContext.instinfo) === null || _authdetailsContext$i19 === void 0 ? void 0 : _authdetailsContext$i19.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
30014
+ }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i20 = authdetailsContext.instinfo) === null || _authdetailsContext$i20 === void 0 ? void 0 : _authdetailsContext$i20.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
29948
30015
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
29949
30016
  }, lang.wishlist)), /*#__PURE__*/React__default["default"].createElement("div", {
29950
30017
  className: "col-lg-12 p-0"
@@ -29953,6 +30020,25 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
29953
30020
  style: {
29954
30021
  borderColor: sectionproperties.resp_header_separatorbg
29955
30022
  }
30023
+ }))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i21 = authdetailsContext.instinfo) === null || _authdetailsContext$i21 === void 0 ? void 0 : _authdetailsContext$i21.contactinfo.instid) == '67d6bda67adf6' && /*#__PURE__*/React__default["default"].createElement("div", {
30024
+ className: "row m-0 w-100 anim"
30025
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
30026
+ className: "col-lg-12 d-flex justify-content-start pl-3 pr-3"
30027
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
30028
+ onClick: function onClick() {
30029
+ setopenmenuCanvas(false);
30030
+ routingcountext(StaticPagesLinksContext.Compare);
30031
+ setmenuactive(false);
30032
+ }
30033
+ }, /*#__PURE__*/React__default["default"].createElement("p", {
30034
+ className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 '
30035
+ }, lang.compare))), /*#__PURE__*/React__default["default"].createElement("div", {
30036
+ className: "col-lg-12 p-0"
30037
+ }, /*#__PURE__*/React__default["default"].createElement("hr", {
30038
+ className: "mt-3 mb-3",
30039
+ style: {
30040
+ borderColor: sectionproperties.resp_header_separatorbg
30041
+ }
29956
30042
  }))), templateproperties_context.separatepolicies == 'No' && templateproperties_context.showpolicies == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
29957
30043
  className: "row m-0 w-100"
29958
30044
  }, /*#__PURE__*/React__default["default"].createElement("div", {
@@ -30066,7 +30152,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30066
30152
  style: {
30067
30153
  borderColor: sectionproperties.resp_header_separatorbg
30068
30154
  }
30069
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i20 = authdetailsContext.instinfo) === null || _authdetailsContext$i20 === void 0 ? void 0 : _authdetailsContext$i20.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
30155
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i22 = authdetailsContext.instinfo) === null || _authdetailsContext$i22 === void 0 ? void 0 : _authdetailsContext$i22.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
30070
30156
  className: "row m-0 w-100"
30071
30157
  }, /*#__PURE__*/React__default["default"].createElement("div", {
30072
30158
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start pl-3 pr-3"
@@ -30085,7 +30171,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30085
30171
  style: {
30086
30172
  borderColor: sectionproperties.resp_header_separatorbg
30087
30173
  }
30088
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i21 = authdetailsContext.instinfo) === null || _authdetailsContext$i21 === void 0 ? void 0 : _authdetailsContext$i21.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
30174
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i23 = authdetailsContext.instinfo) === null || _authdetailsContext$i23 === void 0 ? void 0 : _authdetailsContext$i23.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
30089
30175
  className: "row m-0 w-100"
30090
30176
  }, /*#__PURE__*/React__default["default"].createElement("div", {
30091
30177
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start pl-3 pr-3"
@@ -30395,7 +30481,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30395
30481
  style: {
30396
30482
  borderColor: sectionproperties.resp_header_separatorbg
30397
30483
  }
30398
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i22 = authdetailsContext.instinfo) === null || _authdetailsContext$i22 === void 0 ? void 0 : _authdetailsContext$i22.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
30484
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i24 = authdetailsContext.instinfo) === null || _authdetailsContext$i24 === void 0 ? void 0 : _authdetailsContext$i24.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
30399
30485
  className: "row m-0 w-100"
30400
30486
  }, /*#__PURE__*/React__default["default"].createElement("div", {
30401
30487
  className: "col-lg-12 d-flex justify-content-start pl-3 pr-3",
@@ -30413,7 +30499,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30413
30499
  style: {
30414
30500
  borderColor: sectionproperties.resp_header_separatorbg
30415
30501
  }
30416
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i23 = authdetailsContext.instinfo) === null || _authdetailsContext$i23 === void 0 ? void 0 : _authdetailsContext$i23.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
30502
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i25 = authdetailsContext.instinfo) === null || _authdetailsContext$i25 === void 0 ? void 0 : _authdetailsContext$i25.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
30417
30503
  className: "row m-0 w-100"
30418
30504
  }, /*#__PURE__*/React__default["default"].createElement("div", {
30419
30505
  className: "col-lg-12 d-flex justify-content-start pl-3 pr-3",
@@ -30440,9 +30526,9 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30440
30526
  routingcountext(StaticPagesLinksContext.Wishlist);
30441
30527
  setopenCnvas(false);
30442
30528
  }
30443
- }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i24 = authdetailsContext.instinfo) === null || _authdetailsContext$i24 === void 0 ? void 0 : _authdetailsContext$i24.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
30529
+ }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i26 = authdetailsContext.instinfo) === null || _authdetailsContext$i26 === void 0 ? void 0 : _authdetailsContext$i26.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
30444
30530
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
30445
- }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i25 = authdetailsContext.instinfo) === null || _authdetailsContext$i25 === void 0 ? void 0 : _authdetailsContext$i25.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
30531
+ }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i27 = authdetailsContext.instinfo) === null || _authdetailsContext$i27 === void 0 ? void 0 : _authdetailsContext$i27.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
30446
30532
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
30447
30533
  }, lang.wishlist)), /*#__PURE__*/React__default["default"].createElement("div", {
30448
30534
  className: "col-lg-12 p-0"
@@ -30451,6 +30537,25 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30451
30537
  style: {
30452
30538
  borderColor: sectionproperties.resp_header_separatorbg
30453
30539
  }
30540
+ }))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i28 = authdetailsContext.instinfo) === null || _authdetailsContext$i28 === void 0 ? void 0 : _authdetailsContext$i28.contactinfo.instid) == '67d6bda67adf6' && /*#__PURE__*/React__default["default"].createElement("div", {
30541
+ className: "row m-0 w-100 anim"
30542
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
30543
+ className: "col-lg-12 d-flex justify-content-start pl-3 pr-3"
30544
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
30545
+ onClick: function onClick() {
30546
+ setopenmenuCanvas(false);
30547
+ routingcountext(StaticPagesLinksContext.Compare);
30548
+ setmenuactive(false);
30549
+ }
30550
+ }, /*#__PURE__*/React__default["default"].createElement("p", {
30551
+ className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 '
30552
+ }, lang.compare))), /*#__PURE__*/React__default["default"].createElement("div", {
30553
+ className: "col-lg-12 p-0"
30554
+ }, /*#__PURE__*/React__default["default"].createElement("hr", {
30555
+ className: "mt-3 mb-3",
30556
+ style: {
30557
+ borderColor: sectionproperties.resp_header_separatorbg
30558
+ }
30454
30559
  }))), templateproperties_context.separatepolicies == 'No' && templateproperties_context.showpolicies == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
30455
30560
  className: "row m-0 w-100"
30456
30561
  }, /*#__PURE__*/React__default["default"].createElement("div", {
@@ -30545,7 +30650,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30545
30650
  style: {
30546
30651
  borderColor: sectionproperties.resp_header_separatorbg
30547
30652
  }
30548
- }))), authdetailsContext != undefined && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i26 = authdetailsContext.instinfo) === null || _authdetailsContext$i26 === void 0 || (_authdetailsContext$i26 = _authdetailsContext$i26.instcurrencies) === null || _authdetailsContext$i26 === void 0 ? void 0 : _authdetailsContext$i26.length) > 1 && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i27 = authdetailsContext.instinfo) === null || _authdetailsContext$i27 === void 0 ? void 0 : _authdetailsContext$i27.contactinfo.instid) == '67f69c023cbd4' && /*#__PURE__*/React__default["default"].createElement("div", {
30653
+ }))), authdetailsContext != undefined && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i29 = authdetailsContext.instinfo) === null || _authdetailsContext$i29 === void 0 || (_authdetailsContext$i29 = _authdetailsContext$i29.instcurrencies) === null || _authdetailsContext$i29 === void 0 ? void 0 : _authdetailsContext$i29.length) > 1 && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i30 = authdetailsContext.instinfo) === null || _authdetailsContext$i30 === void 0 ? void 0 : _authdetailsContext$i30.contactinfo.instid) == '67f69c023cbd4' && /*#__PURE__*/React__default["default"].createElement("div", {
30549
30654
  "class": "row m-0 w-100 pl-3 pr-3"
30550
30655
  }, /*#__PURE__*/React__default["default"].createElement("div", {
30551
30656
  "class": header_cssstyles.navbar_item_text_responsive + ' col-lg-12 p-0 d-flex align-items-center justify-content-start mb-2 '
@@ -30563,7 +30668,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30563
30668
  background: '#f4f4f4',
30564
30669
  borderRadius: 5
30565
30670
  }
30566
- }, authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i28 = authdetailsContext.instinfo) === null || _authdetailsContext$i28 === void 0 || (_authdetailsContext$i28 = _authdetailsContext$i28.instcurrencies) === null || _authdetailsContext$i28 === void 0 ? void 0 : _authdetailsContext$i28.map(function (item, index) {
30671
+ }, authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i31 = authdetailsContext.instinfo) === null || _authdetailsContext$i31 === void 0 || (_authdetailsContext$i31 = _authdetailsContext$i31.instcurrencies) === null || _authdetailsContext$i31 === void 0 ? void 0 : _authdetailsContext$i31.map(function (item, index) {
30567
30672
  return /*#__PURE__*/React__default["default"].createElement("div", {
30568
30673
  "class": header_cssstyles.navbar_item_text_responsive + ' col-lg-12 p-0 text-start py-2 px-2 cursor-pointer ',
30569
30674
  onClick: function onClick() {
@@ -56697,7 +56802,7 @@ var Footer8 = function Footer8(props) {
56697
56802
  fontSize: 14,
56698
56803
  fontWeight: 400
56699
56804
  }
56700
- }, langdetect == 'en' ? 'Units No. (40, 41, 42), Industrial Zone, Arab Al-Awamer Complex, Assiut Governorate' : langdetect == 'fr' ? 'Unités n° (40, 41, 42), Zone Industrielle, Complexe Arab Al-Awamer, Gouvernorat d’Assiout' : 'الوحدات رقم (40، 41، 42)، المنطقة الصناعية، مجمع عرب العوامر، محافظة أسيوط')))), /*#__PURE__*/React__default["default"].createElement("div", {
56805
+ }, langdetect == 'en' ? 'Units No. (40, 41, 42, 83, 84, 85, 86, 87, 88, 83, 84, 85, 86, 87, 88), Industrial Zone, Arab Al-Awamer Complex, Assiut Governorate' : langdetect == 'fr' ? 'Unités n° (40, 41, 42, 83, 84, 85, 86, 87, 88), Zone Industrielle, Complexe Arab Al-Awamer, Gouvernorat d’Assiout' : 'الوحدات رقم (40، 41، 42)، المنطقة الصناعية، مجمع عرب العوامر، محافظة أسيوط')))), /*#__PURE__*/React__default["default"].createElement("div", {
56701
56806
  "class": "col-lg-4 col-md-12 d-none d-md-flex flex-column mb-md-3 mt-3"
56702
56807
  }, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.Accordion, {
56703
56808
  "class": "w-100",
package/dist/index.esm.js CHANGED
@@ -10980,6 +10980,30 @@ var Compare = function Compare(props) {
10980
10980
  return _ref.apply(this, arguments);
10981
10981
  };
10982
10982
  }();
10983
+ var removecompareproduct = function removecompareproduct(productId) {
10984
+ // Replace this with a real ID (e.g., passed via props)
10985
+ var key = 'comparedProducts';
10986
+
10987
+ // Get current list from localStorage
10988
+ var existing = JSON.parse(localStorage.getItem(key)) || [];
10989
+
10990
+ // Check if the product is already in the list
10991
+ var index = existing.indexOf(productId);
10992
+ if (index > -1) {
10993
+ // If exists, remove it (toggle off)
10994
+ existing.splice(index, 1);
10995
+ setIsCompared(false);
10996
+ } else {
10997
+ // If not, add it (toggle on)
10998
+
10999
+ existing.push(productId);
11000
+ setIsCompared(true);
11001
+ }
11002
+
11003
+ // Update localStorage
11004
+ localStorage.setItem(key, JSON.stringify(existing));
11005
+ window.location.reload();
11006
+ };
10983
11007
  useEffect(function () {
10984
11008
  var runcomparefunc = /*#__PURE__*/function () {
10985
11009
  var _ref2 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
@@ -11057,7 +11081,17 @@ var Compare = function Compare(props) {
11057
11081
  style: {
11058
11082
  textAlign: langdetect != 'ar' ? 'left' : 'right'
11059
11083
  }
11060
- }, lang.price)), /*#__PURE__*/React.createElement("tbody", null, productDataList.map(function (item, index) {
11084
+ }, lang.price), /*#__PURE__*/React.createElement("th", {
11085
+ className: 'font-weight-500 font-14 text-uppercase text-light mw-150 mw-md-300',
11086
+ style: {
11087
+ textAlign: langdetect != 'ar' ? 'left' : 'right'
11088
+ }
11089
+ }), /*#__PURE__*/React.createElement("th", {
11090
+ className: 'font-weight-500 font-14 text-uppercase text-light mw-150 mw-md-300',
11091
+ style: {
11092
+ textAlign: langdetect != 'ar' ? 'left' : 'right'
11093
+ }
11094
+ })), /*#__PURE__*/React.createElement("tbody", null, productDataList.map(function (item, index) {
11061
11095
  return /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, /*#__PURE__*/React.createElement("div", {
11062
11096
  style: {
11063
11097
  width: '70%',
@@ -11098,7 +11132,21 @@ var Compare = function Compare(props) {
11098
11132
  color: '#000',
11099
11133
  fontSize: '14px'
11100
11134
  }
11101
- }, item.defaultprice));
11135
+ }, item.defaultprice), /*#__PURE__*/React.createElement("td", {
11136
+ style: {
11137
+ color: '#000',
11138
+ fontSize: '14px'
11139
+ },
11140
+ onClick: function onClick() {}
11141
+ }, lang.addtocart), /*#__PURE__*/React.createElement("td", {
11142
+ style: {
11143
+ color: '#000',
11144
+ fontSize: '14px'
11145
+ },
11146
+ onClick: function onClick() {
11147
+ removecompareproduct(item.productid);
11148
+ }
11149
+ }, lang.remove));
11102
11150
  })))));
11103
11151
  };
11104
11152
 
@@ -27814,7 +27862,7 @@ var SocialMediaSection = function SocialMediaSection(props) {
27814
27862
  function ownKeys$27(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; }
27815
27863
  function _objectSpread$27(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$27(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$27(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
27816
27864
  var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
27817
- var _authdetailsContext$i4, _authdetailsContext$i5, _authdetailsContext$i6, _authdetailsContext$i7, _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i1, _authdetailsContext$i10, _authdetailsContext$i14, _authdetailsContext$i15, _authdetailsContext$i16, _authdetailsContext$i17, _authdetailsContext$i18, _authdetailsContext$i19, _authdetailsContext$i20, _authdetailsContext$i21, _authdetailsContext$i22, _authdetailsContext$i23, _authdetailsContext$i24, _authdetailsContext$i25, _authdetailsContext$i26, _authdetailsContext$i27, _authdetailsContext$i28;
27865
+ var _authdetailsContext$i4, _authdetailsContext$i5, _authdetailsContext$i6, _authdetailsContext$i7, _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i1, _authdetailsContext$i10, _authdetailsContext$i14, _authdetailsContext$i15, _authdetailsContext$i16, _authdetailsContext$i17, _authdetailsContext$i18, _authdetailsContext$i19, _authdetailsContext$i20, _authdetailsContext$i21, _authdetailsContext$i22, _authdetailsContext$i23, _authdetailsContext$i24, _authdetailsContext$i25, _authdetailsContext$i26, _authdetailsContext$i27, _authdetailsContext$i28, _authdetailsContext$i29, _authdetailsContext$i30, _authdetailsContext$i31;
27818
27866
  var actions = props.actions;
27819
27867
  var LogoutMutationContext = props.actions.LogoutMutationContext;
27820
27868
  var setsidecartnavshowcontext = props.actions.setsidecartnavshowcontext;
@@ -29463,6 +29511,25 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
29463
29511
  style: {
29464
29512
  borderColor: sectionproperties.resp_header_separatorbg
29465
29513
  }
29514
+ }))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i16 = authdetailsContext.instinfo) === null || _authdetailsContext$i16 === void 0 ? void 0 : _authdetailsContext$i16.contactinfo.instid) == '67d6bda67adf6' && /*#__PURE__*/React.createElement("div", {
29515
+ className: "row m-0 w-100 anim"
29516
+ }, /*#__PURE__*/React.createElement("div", {
29517
+ className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start my-1"
29518
+ }, /*#__PURE__*/React.createElement("div", {
29519
+ onClick: function onClick() {
29520
+ setopenmenuCanvas(false);
29521
+ routingcountext(StaticPagesLinksContext.Compare);
29522
+ setmenuactive(false);
29523
+ }
29524
+ }, /*#__PURE__*/React.createElement("p", {
29525
+ className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 '
29526
+ }, lang.compare))), /*#__PURE__*/React.createElement("div", {
29527
+ className: "col-lg-12 p-0"
29528
+ }, /*#__PURE__*/React.createElement("hr", {
29529
+ className: "mt-3 mb-3",
29530
+ style: {
29531
+ borderColor: sectionproperties.resp_header_separatorbg
29532
+ }
29466
29533
  }))), templateproperties_context.separatepolicies == 'No' && templateproperties_context.showpolicies == 'Yes' && /*#__PURE__*/React.createElement("div", {
29467
29534
  className: "row m-0 w-100 anim"
29468
29535
  }, /*#__PURE__*/React.createElement("div", {
@@ -29577,7 +29644,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
29577
29644
  style: {
29578
29645
  borderColor: sectionproperties.resp_header_separatorbg
29579
29646
  }
29580
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i16 = authdetailsContext.instinfo) === null || _authdetailsContext$i16 === void 0 ? void 0 : _authdetailsContext$i16.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React.createElement("div", {
29647
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i17 = authdetailsContext.instinfo) === null || _authdetailsContext$i17 === void 0 ? void 0 : _authdetailsContext$i17.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React.createElement("div", {
29581
29648
  className: "row m-0 w-100 anim"
29582
29649
  }, /*#__PURE__*/React.createElement("div", {
29583
29650
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start my-1"
@@ -29596,7 +29663,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
29596
29663
  style: {
29597
29664
  borderColor: sectionproperties.resp_header_separatorbg
29598
29665
  }
29599
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i17 = authdetailsContext.instinfo) === null || _authdetailsContext$i17 === void 0 ? void 0 : _authdetailsContext$i17.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React.createElement("div", {
29666
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i18 = authdetailsContext.instinfo) === null || _authdetailsContext$i18 === void 0 ? void 0 : _authdetailsContext$i18.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React.createElement("div", {
29600
29667
  className: "row m-0 w-100 anim"
29601
29668
  }, /*#__PURE__*/React.createElement("div", {
29602
29669
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start my-1"
@@ -29890,9 +29957,9 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
29890
29957
  routingcountext(StaticPagesLinksContext.Wishlist);
29891
29958
  setopenCnvas(false);
29892
29959
  }
29893
- }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i18 = authdetailsContext.instinfo) === null || _authdetailsContext$i18 === void 0 ? void 0 : _authdetailsContext$i18.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React.createElement("p", {
29960
+ }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i19 = authdetailsContext.instinfo) === null || _authdetailsContext$i19 === void 0 ? void 0 : _authdetailsContext$i19.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React.createElement("p", {
29894
29961
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
29895
- }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i19 = authdetailsContext.instinfo) === null || _authdetailsContext$i19 === void 0 ? void 0 : _authdetailsContext$i19.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React.createElement("p", {
29962
+ }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i20 = authdetailsContext.instinfo) === null || _authdetailsContext$i20 === void 0 ? void 0 : _authdetailsContext$i20.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React.createElement("p", {
29896
29963
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
29897
29964
  }, lang.wishlist)), /*#__PURE__*/React.createElement("div", {
29898
29965
  className: "col-lg-12 p-0"
@@ -29901,6 +29968,25 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
29901
29968
  style: {
29902
29969
  borderColor: sectionproperties.resp_header_separatorbg
29903
29970
  }
29971
+ }))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i21 = authdetailsContext.instinfo) === null || _authdetailsContext$i21 === void 0 ? void 0 : _authdetailsContext$i21.contactinfo.instid) == '67d6bda67adf6' && /*#__PURE__*/React.createElement("div", {
29972
+ className: "row m-0 w-100 anim"
29973
+ }, /*#__PURE__*/React.createElement("div", {
29974
+ className: "col-lg-12 d-flex justify-content-start pl-3 pr-3"
29975
+ }, /*#__PURE__*/React.createElement("div", {
29976
+ onClick: function onClick() {
29977
+ setopenmenuCanvas(false);
29978
+ routingcountext(StaticPagesLinksContext.Compare);
29979
+ setmenuactive(false);
29980
+ }
29981
+ }, /*#__PURE__*/React.createElement("p", {
29982
+ className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 '
29983
+ }, lang.compare))), /*#__PURE__*/React.createElement("div", {
29984
+ className: "col-lg-12 p-0"
29985
+ }, /*#__PURE__*/React.createElement("hr", {
29986
+ className: "mt-3 mb-3",
29987
+ style: {
29988
+ borderColor: sectionproperties.resp_header_separatorbg
29989
+ }
29904
29990
  }))), templateproperties_context.separatepolicies == 'No' && templateproperties_context.showpolicies == 'Yes' && /*#__PURE__*/React.createElement("div", {
29905
29991
  className: "row m-0 w-100"
29906
29992
  }, /*#__PURE__*/React.createElement("div", {
@@ -30014,7 +30100,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30014
30100
  style: {
30015
30101
  borderColor: sectionproperties.resp_header_separatorbg
30016
30102
  }
30017
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i20 = authdetailsContext.instinfo) === null || _authdetailsContext$i20 === void 0 ? void 0 : _authdetailsContext$i20.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React.createElement("div", {
30103
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i22 = authdetailsContext.instinfo) === null || _authdetailsContext$i22 === void 0 ? void 0 : _authdetailsContext$i22.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React.createElement("div", {
30018
30104
  className: "row m-0 w-100"
30019
30105
  }, /*#__PURE__*/React.createElement("div", {
30020
30106
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start pl-3 pr-3"
@@ -30033,7 +30119,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30033
30119
  style: {
30034
30120
  borderColor: sectionproperties.resp_header_separatorbg
30035
30121
  }
30036
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i21 = authdetailsContext.instinfo) === null || _authdetailsContext$i21 === void 0 ? void 0 : _authdetailsContext$i21.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React.createElement("div", {
30122
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i23 = authdetailsContext.instinfo) === null || _authdetailsContext$i23 === void 0 ? void 0 : _authdetailsContext$i23.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React.createElement("div", {
30037
30123
  className: "row m-0 w-100"
30038
30124
  }, /*#__PURE__*/React.createElement("div", {
30039
30125
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start pl-3 pr-3"
@@ -30343,7 +30429,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30343
30429
  style: {
30344
30430
  borderColor: sectionproperties.resp_header_separatorbg
30345
30431
  }
30346
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i22 = authdetailsContext.instinfo) === null || _authdetailsContext$i22 === void 0 ? void 0 : _authdetailsContext$i22.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React.createElement("div", {
30432
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i24 = authdetailsContext.instinfo) === null || _authdetailsContext$i24 === void 0 ? void 0 : _authdetailsContext$i24.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React.createElement("div", {
30347
30433
  className: "row m-0 w-100"
30348
30434
  }, /*#__PURE__*/React.createElement("div", {
30349
30435
  className: "col-lg-12 d-flex justify-content-start pl-3 pr-3",
@@ -30361,7 +30447,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30361
30447
  style: {
30362
30448
  borderColor: sectionproperties.resp_header_separatorbg
30363
30449
  }
30364
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i23 = authdetailsContext.instinfo) === null || _authdetailsContext$i23 === void 0 ? void 0 : _authdetailsContext$i23.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React.createElement("div", {
30450
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i25 = authdetailsContext.instinfo) === null || _authdetailsContext$i25 === void 0 ? void 0 : _authdetailsContext$i25.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React.createElement("div", {
30365
30451
  className: "row m-0 w-100"
30366
30452
  }, /*#__PURE__*/React.createElement("div", {
30367
30453
  className: "col-lg-12 d-flex justify-content-start pl-3 pr-3",
@@ -30388,9 +30474,9 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30388
30474
  routingcountext(StaticPagesLinksContext.Wishlist);
30389
30475
  setopenCnvas(false);
30390
30476
  }
30391
- }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i24 = authdetailsContext.instinfo) === null || _authdetailsContext$i24 === void 0 ? void 0 : _authdetailsContext$i24.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React.createElement("p", {
30477
+ }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i26 = authdetailsContext.instinfo) === null || _authdetailsContext$i26 === void 0 ? void 0 : _authdetailsContext$i26.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React.createElement("p", {
30392
30478
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
30393
- }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i25 = authdetailsContext.instinfo) === null || _authdetailsContext$i25 === void 0 ? void 0 : _authdetailsContext$i25.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React.createElement("p", {
30479
+ }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i27 = authdetailsContext.instinfo) === null || _authdetailsContext$i27 === void 0 ? void 0 : _authdetailsContext$i27.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React.createElement("p", {
30394
30480
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
30395
30481
  }, lang.wishlist)), /*#__PURE__*/React.createElement("div", {
30396
30482
  className: "col-lg-12 p-0"
@@ -30399,6 +30485,25 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30399
30485
  style: {
30400
30486
  borderColor: sectionproperties.resp_header_separatorbg
30401
30487
  }
30488
+ }))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i28 = authdetailsContext.instinfo) === null || _authdetailsContext$i28 === void 0 ? void 0 : _authdetailsContext$i28.contactinfo.instid) == '67d6bda67adf6' && /*#__PURE__*/React.createElement("div", {
30489
+ className: "row m-0 w-100 anim"
30490
+ }, /*#__PURE__*/React.createElement("div", {
30491
+ className: "col-lg-12 d-flex justify-content-start pl-3 pr-3"
30492
+ }, /*#__PURE__*/React.createElement("div", {
30493
+ onClick: function onClick() {
30494
+ setopenmenuCanvas(false);
30495
+ routingcountext(StaticPagesLinksContext.Compare);
30496
+ setmenuactive(false);
30497
+ }
30498
+ }, /*#__PURE__*/React.createElement("p", {
30499
+ className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 '
30500
+ }, lang.compare))), /*#__PURE__*/React.createElement("div", {
30501
+ className: "col-lg-12 p-0"
30502
+ }, /*#__PURE__*/React.createElement("hr", {
30503
+ className: "mt-3 mb-3",
30504
+ style: {
30505
+ borderColor: sectionproperties.resp_header_separatorbg
30506
+ }
30402
30507
  }))), templateproperties_context.separatepolicies == 'No' && templateproperties_context.showpolicies == 'Yes' && /*#__PURE__*/React.createElement("div", {
30403
30508
  className: "row m-0 w-100"
30404
30509
  }, /*#__PURE__*/React.createElement("div", {
@@ -30493,7 +30598,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30493
30598
  style: {
30494
30599
  borderColor: sectionproperties.resp_header_separatorbg
30495
30600
  }
30496
- }))), authdetailsContext != undefined && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i26 = authdetailsContext.instinfo) === null || _authdetailsContext$i26 === void 0 || (_authdetailsContext$i26 = _authdetailsContext$i26.instcurrencies) === null || _authdetailsContext$i26 === void 0 ? void 0 : _authdetailsContext$i26.length) > 1 && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i27 = authdetailsContext.instinfo) === null || _authdetailsContext$i27 === void 0 ? void 0 : _authdetailsContext$i27.contactinfo.instid) == '67f69c023cbd4' && /*#__PURE__*/React.createElement("div", {
30601
+ }))), authdetailsContext != undefined && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i29 = authdetailsContext.instinfo) === null || _authdetailsContext$i29 === void 0 || (_authdetailsContext$i29 = _authdetailsContext$i29.instcurrencies) === null || _authdetailsContext$i29 === void 0 ? void 0 : _authdetailsContext$i29.length) > 1 && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i30 = authdetailsContext.instinfo) === null || _authdetailsContext$i30 === void 0 ? void 0 : _authdetailsContext$i30.contactinfo.instid) == '67f69c023cbd4' && /*#__PURE__*/React.createElement("div", {
30497
30602
  "class": "row m-0 w-100 pl-3 pr-3"
30498
30603
  }, /*#__PURE__*/React.createElement("div", {
30499
30604
  "class": header_cssstyles.navbar_item_text_responsive + ' col-lg-12 p-0 d-flex align-items-center justify-content-start mb-2 '
@@ -30511,7 +30616,7 @@ var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
30511
30616
  background: '#f4f4f4',
30512
30617
  borderRadius: 5
30513
30618
  }
30514
- }, authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i28 = authdetailsContext.instinfo) === null || _authdetailsContext$i28 === void 0 || (_authdetailsContext$i28 = _authdetailsContext$i28.instcurrencies) === null || _authdetailsContext$i28 === void 0 ? void 0 : _authdetailsContext$i28.map(function (item, index) {
30619
+ }, authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i31 = authdetailsContext.instinfo) === null || _authdetailsContext$i31 === void 0 || (_authdetailsContext$i31 = _authdetailsContext$i31.instcurrencies) === null || _authdetailsContext$i31 === void 0 ? void 0 : _authdetailsContext$i31.map(function (item, index) {
30515
30620
  return /*#__PURE__*/React.createElement("div", {
30516
30621
  "class": header_cssstyles.navbar_item_text_responsive + ' col-lg-12 p-0 text-start py-2 px-2 cursor-pointer ',
30517
30622
  onClick: function onClick() {
@@ -56645,7 +56750,7 @@ var Footer8 = function Footer8(props) {
56645
56750
  fontSize: 14,
56646
56751
  fontWeight: 400
56647
56752
  }
56648
- }, langdetect == 'en' ? 'Units No. (40, 41, 42), Industrial Zone, Arab Al-Awamer Complex, Assiut Governorate' : langdetect == 'fr' ? 'Unités n° (40, 41, 42), Zone Industrielle, Complexe Arab Al-Awamer, Gouvernorat d’Assiout' : 'الوحدات رقم (40، 41، 42)، المنطقة الصناعية، مجمع عرب العوامر، محافظة أسيوط')))), /*#__PURE__*/React.createElement("div", {
56753
+ }, langdetect == 'en' ? 'Units No. (40, 41, 42, 83, 84, 85, 86, 87, 88, 83, 84, 85, 86, 87, 88), Industrial Zone, Arab Al-Awamer Complex, Assiut Governorate' : langdetect == 'fr' ? 'Unités n° (40, 41, 42, 83, 84, 85, 86, 87, 88), Zone Industrielle, Complexe Arab Al-Awamer, Gouvernorat d’Assiout' : 'الوحدات رقم (40، 41، 42)، المنطقة الصناعية، مجمع عرب العوامر، محافظة أسيوط')))), /*#__PURE__*/React.createElement("div", {
56649
56754
  "class": "col-lg-4 col-md-12 d-none d-md-flex flex-column mb-md-3 mt-3"
56650
56755
  }, /*#__PURE__*/React.createElement(Accordion, {
56651
56756
  "class": "w-100",
package/dist/index.umd.js CHANGED
@@ -10839,6 +10839,30 @@
10839
10839
  return _ref.apply(this, arguments);
10840
10840
  };
10841
10841
  }();
10842
+ var removecompareproduct = function removecompareproduct(productId) {
10843
+ // Replace this with a real ID (e.g., passed via props)
10844
+ var key = 'comparedProducts';
10845
+
10846
+ // Get current list from localStorage
10847
+ var existing = JSON.parse(localStorage.getItem(key)) || [];
10848
+
10849
+ // Check if the product is already in the list
10850
+ var index = existing.indexOf(productId);
10851
+ if (index > -1) {
10852
+ // If exists, remove it (toggle off)
10853
+ existing.splice(index, 1);
10854
+ setIsCompared(false);
10855
+ } else {
10856
+ // If not, add it (toggle on)
10857
+
10858
+ existing.push(productId);
10859
+ setIsCompared(true);
10860
+ }
10861
+
10862
+ // Update localStorage
10863
+ localStorage.setItem(key, JSON.stringify(existing));
10864
+ window.location.reload();
10865
+ };
10842
10866
  React.useEffect(function () {
10843
10867
  var runcomparefunc = /*#__PURE__*/function () {
10844
10868
  var _ref2 = _asyncToGenerator__default["default"](/*#__PURE__*/_regeneratorRuntime__default["default"].mark(function _callee2() {
@@ -10916,7 +10940,17 @@
10916
10940
  style: {
10917
10941
  textAlign: langdetect != 'ar' ? 'left' : 'right'
10918
10942
  }
10919
- }, lang.price)), /*#__PURE__*/React__default["default"].createElement("tbody", null, productDataList.map(function (item, index) {
10943
+ }, lang.price), /*#__PURE__*/React__default["default"].createElement("th", {
10944
+ className: 'font-weight-500 font-14 text-uppercase text-light mw-150 mw-md-300',
10945
+ style: {
10946
+ textAlign: langdetect != 'ar' ? 'left' : 'right'
10947
+ }
10948
+ }), /*#__PURE__*/React__default["default"].createElement("th", {
10949
+ className: 'font-weight-500 font-14 text-uppercase text-light mw-150 mw-md-300',
10950
+ style: {
10951
+ textAlign: langdetect != 'ar' ? 'left' : 'right'
10952
+ }
10953
+ })), /*#__PURE__*/React__default["default"].createElement("tbody", null, productDataList.map(function (item, index) {
10920
10954
  return /*#__PURE__*/React__default["default"].createElement("tr", null, /*#__PURE__*/React__default["default"].createElement("td", null, /*#__PURE__*/React__default["default"].createElement("div", {
10921
10955
  style: {
10922
10956
  width: '70%',
@@ -10957,7 +10991,21 @@
10957
10991
  color: '#000',
10958
10992
  fontSize: '14px'
10959
10993
  }
10960
- }, item.defaultprice));
10994
+ }, item.defaultprice), /*#__PURE__*/React__default["default"].createElement("td", {
10995
+ style: {
10996
+ color: '#000',
10997
+ fontSize: '14px'
10998
+ },
10999
+ onClick: function onClick() {}
11000
+ }, lang.addtocart), /*#__PURE__*/React__default["default"].createElement("td", {
11001
+ style: {
11002
+ color: '#000',
11003
+ fontSize: '14px'
11004
+ },
11005
+ onClick: function onClick() {
11006
+ removecompareproduct(item.productid);
11007
+ }
11008
+ }, lang.remove));
10961
11009
  })))));
10962
11010
  };
10963
11011
 
@@ -27673,7 +27721,7 @@
27673
27721
  function ownKeys$27(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; }
27674
27722
  function _objectSpread$27(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$27(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$27(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
27675
27723
  var HeaderresponsiveStyle2 = function HeaderresponsiveStyle2(props) {
27676
- var _authdetailsContext$i4, _authdetailsContext$i5, _authdetailsContext$i6, _authdetailsContext$i7, _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i1, _authdetailsContext$i10, _authdetailsContext$i14, _authdetailsContext$i15, _authdetailsContext$i16, _authdetailsContext$i17, _authdetailsContext$i18, _authdetailsContext$i19, _authdetailsContext$i20, _authdetailsContext$i21, _authdetailsContext$i22, _authdetailsContext$i23, _authdetailsContext$i24, _authdetailsContext$i25, _authdetailsContext$i26, _authdetailsContext$i27, _authdetailsContext$i28;
27724
+ var _authdetailsContext$i4, _authdetailsContext$i5, _authdetailsContext$i6, _authdetailsContext$i7, _authdetailsContext$i8, _authdetailsContext$i9, _authdetailsContext$i1, _authdetailsContext$i10, _authdetailsContext$i14, _authdetailsContext$i15, _authdetailsContext$i16, _authdetailsContext$i17, _authdetailsContext$i18, _authdetailsContext$i19, _authdetailsContext$i20, _authdetailsContext$i21, _authdetailsContext$i22, _authdetailsContext$i23, _authdetailsContext$i24, _authdetailsContext$i25, _authdetailsContext$i26, _authdetailsContext$i27, _authdetailsContext$i28, _authdetailsContext$i29, _authdetailsContext$i30, _authdetailsContext$i31;
27677
27725
  var actions = props.actions;
27678
27726
  var LogoutMutationContext = props.actions.LogoutMutationContext;
27679
27727
  var setsidecartnavshowcontext = props.actions.setsidecartnavshowcontext;
@@ -29322,6 +29370,25 @@
29322
29370
  style: {
29323
29371
  borderColor: sectionproperties.resp_header_separatorbg
29324
29372
  }
29373
+ }))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i16 = authdetailsContext.instinfo) === null || _authdetailsContext$i16 === void 0 ? void 0 : _authdetailsContext$i16.contactinfo.instid) == '67d6bda67adf6' && /*#__PURE__*/React__default["default"].createElement("div", {
29374
+ className: "row m-0 w-100 anim"
29375
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
29376
+ className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start my-1"
29377
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
29378
+ onClick: function onClick() {
29379
+ setopenmenuCanvas(false);
29380
+ routingcountext(StaticPagesLinksContext.Compare);
29381
+ setmenuactive(false);
29382
+ }
29383
+ }, /*#__PURE__*/React__default["default"].createElement("p", {
29384
+ className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 '
29385
+ }, lang.compare))), /*#__PURE__*/React__default["default"].createElement("div", {
29386
+ className: "col-lg-12 p-0"
29387
+ }, /*#__PURE__*/React__default["default"].createElement("hr", {
29388
+ className: "mt-3 mb-3",
29389
+ style: {
29390
+ borderColor: sectionproperties.resp_header_separatorbg
29391
+ }
29325
29392
  }))), templateproperties_context.separatepolicies == 'No' && templateproperties_context.showpolicies == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
29326
29393
  className: "row m-0 w-100 anim"
29327
29394
  }, /*#__PURE__*/React__default["default"].createElement("div", {
@@ -29436,7 +29503,7 @@
29436
29503
  style: {
29437
29504
  borderColor: sectionproperties.resp_header_separatorbg
29438
29505
  }
29439
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i16 = authdetailsContext.instinfo) === null || _authdetailsContext$i16 === void 0 ? void 0 : _authdetailsContext$i16.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
29506
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i17 = authdetailsContext.instinfo) === null || _authdetailsContext$i17 === void 0 ? void 0 : _authdetailsContext$i17.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
29440
29507
  className: "row m-0 w-100 anim"
29441
29508
  }, /*#__PURE__*/React__default["default"].createElement("div", {
29442
29509
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start my-1"
@@ -29455,7 +29522,7 @@
29455
29522
  style: {
29456
29523
  borderColor: sectionproperties.resp_header_separatorbg
29457
29524
  }
29458
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i17 = authdetailsContext.instinfo) === null || _authdetailsContext$i17 === void 0 ? void 0 : _authdetailsContext$i17.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
29525
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i18 = authdetailsContext.instinfo) === null || _authdetailsContext$i18 === void 0 ? void 0 : _authdetailsContext$i18.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
29459
29526
  className: "row m-0 w-100 anim"
29460
29527
  }, /*#__PURE__*/React__default["default"].createElement("div", {
29461
29528
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start my-1"
@@ -29749,9 +29816,9 @@
29749
29816
  routingcountext(StaticPagesLinksContext.Wishlist);
29750
29817
  setopenCnvas(false);
29751
29818
  }
29752
- }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i18 = authdetailsContext.instinfo) === null || _authdetailsContext$i18 === void 0 ? void 0 : _authdetailsContext$i18.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
29819
+ }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i19 = authdetailsContext.instinfo) === null || _authdetailsContext$i19 === void 0 ? void 0 : _authdetailsContext$i19.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
29753
29820
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
29754
- }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i19 = authdetailsContext.instinfo) === null || _authdetailsContext$i19 === void 0 ? void 0 : _authdetailsContext$i19.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
29821
+ }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i20 = authdetailsContext.instinfo) === null || _authdetailsContext$i20 === void 0 ? void 0 : _authdetailsContext$i20.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
29755
29822
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
29756
29823
  }, lang.wishlist)), /*#__PURE__*/React__default["default"].createElement("div", {
29757
29824
  className: "col-lg-12 p-0"
@@ -29760,6 +29827,25 @@
29760
29827
  style: {
29761
29828
  borderColor: sectionproperties.resp_header_separatorbg
29762
29829
  }
29830
+ }))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i21 = authdetailsContext.instinfo) === null || _authdetailsContext$i21 === void 0 ? void 0 : _authdetailsContext$i21.contactinfo.instid) == '67d6bda67adf6' && /*#__PURE__*/React__default["default"].createElement("div", {
29831
+ className: "row m-0 w-100 anim"
29832
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
29833
+ className: "col-lg-12 d-flex justify-content-start pl-3 pr-3"
29834
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
29835
+ onClick: function onClick() {
29836
+ setopenmenuCanvas(false);
29837
+ routingcountext(StaticPagesLinksContext.Compare);
29838
+ setmenuactive(false);
29839
+ }
29840
+ }, /*#__PURE__*/React__default["default"].createElement("p", {
29841
+ className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 '
29842
+ }, lang.compare))), /*#__PURE__*/React__default["default"].createElement("div", {
29843
+ className: "col-lg-12 p-0"
29844
+ }, /*#__PURE__*/React__default["default"].createElement("hr", {
29845
+ className: "mt-3 mb-3",
29846
+ style: {
29847
+ borderColor: sectionproperties.resp_header_separatorbg
29848
+ }
29763
29849
  }))), templateproperties_context.separatepolicies == 'No' && templateproperties_context.showpolicies == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
29764
29850
  className: "row m-0 w-100"
29765
29851
  }, /*#__PURE__*/React__default["default"].createElement("div", {
@@ -29873,7 +29959,7 @@
29873
29959
  style: {
29874
29960
  borderColor: sectionproperties.resp_header_separatorbg
29875
29961
  }
29876
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i20 = authdetailsContext.instinfo) === null || _authdetailsContext$i20 === void 0 ? void 0 : _authdetailsContext$i20.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
29962
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i22 = authdetailsContext.instinfo) === null || _authdetailsContext$i22 === void 0 ? void 0 : _authdetailsContext$i22.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
29877
29963
  className: "row m-0 w-100"
29878
29964
  }, /*#__PURE__*/React__default["default"].createElement("div", {
29879
29965
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start pl-3 pr-3"
@@ -29892,7 +29978,7 @@
29892
29978
  style: {
29893
29979
  borderColor: sectionproperties.resp_header_separatorbg
29894
29980
  }
29895
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i21 = authdetailsContext.instinfo) === null || _authdetailsContext$i21 === void 0 ? void 0 : _authdetailsContext$i21.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
29981
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i23 = authdetailsContext.instinfo) === null || _authdetailsContext$i23 === void 0 ? void 0 : _authdetailsContext$i23.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
29896
29982
  className: "row m-0 w-100"
29897
29983
  }, /*#__PURE__*/React__default["default"].createElement("div", {
29898
29984
  className: "col-lg-12 pl-0 pr-0 d-flex justify-content-start pl-3 pr-3"
@@ -30202,7 +30288,7 @@
30202
30288
  style: {
30203
30289
  borderColor: sectionproperties.resp_header_separatorbg
30204
30290
  }
30205
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i22 = authdetailsContext.instinfo) === null || _authdetailsContext$i22 === void 0 ? void 0 : _authdetailsContext$i22.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
30291
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i24 = authdetailsContext.instinfo) === null || _authdetailsContext$i24 === void 0 ? void 0 : _authdetailsContext$i24.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("div", {
30206
30292
  className: "row m-0 w-100"
30207
30293
  }, /*#__PURE__*/React__default["default"].createElement("div", {
30208
30294
  className: "col-lg-12 d-flex justify-content-start pl-3 pr-3",
@@ -30220,7 +30306,7 @@
30220
30306
  style: {
30221
30307
  borderColor: sectionproperties.resp_header_separatorbg
30222
30308
  }
30223
- }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i23 = authdetailsContext.instinfo) === null || _authdetailsContext$i23 === void 0 ? void 0 : _authdetailsContext$i23.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
30309
+ }))), authdetailsContext.loggedin == true && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i25 = authdetailsContext.instinfo) === null || _authdetailsContext$i25 === void 0 ? void 0 : _authdetailsContext$i25.contactinfo.instid) == '6804c4480fde5' && /*#__PURE__*/React__default["default"].createElement("div", {
30224
30310
  className: "row m-0 w-100"
30225
30311
  }, /*#__PURE__*/React__default["default"].createElement("div", {
30226
30312
  className: "col-lg-12 d-flex justify-content-start pl-3 pr-3",
@@ -30247,9 +30333,9 @@
30247
30333
  routingcountext(StaticPagesLinksContext.Wishlist);
30248
30334
  setopenCnvas(false);
30249
30335
  }
30250
- }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i24 = authdetailsContext.instinfo) === null || _authdetailsContext$i24 === void 0 ? void 0 : _authdetailsContext$i24.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
30336
+ }, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i26 = authdetailsContext.instinfo) === null || _authdetailsContext$i26 === void 0 ? void 0 : _authdetailsContext$i26.contactinfo.instid) == '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
30251
30337
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
30252
- }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i25 = authdetailsContext.instinfo) === null || _authdetailsContext$i25 === void 0 ? void 0 : _authdetailsContext$i25.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
30338
+ }, langdetect != 'ar' ? lang.wishlist : 'المفضلة'), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i27 = authdetailsContext.instinfo) === null || _authdetailsContext$i27 === void 0 ? void 0 : _authdetailsContext$i27.contactinfo.instid) != '6808c6295b598' && /*#__PURE__*/React__default["default"].createElement("p", {
30253
30339
  className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 d-flex justify-content-start '
30254
30340
  }, lang.wishlist)), /*#__PURE__*/React__default["default"].createElement("div", {
30255
30341
  className: "col-lg-12 p-0"
@@ -30258,6 +30344,25 @@
30258
30344
  style: {
30259
30345
  borderColor: sectionproperties.resp_header_separatorbg
30260
30346
  }
30347
+ }))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i28 = authdetailsContext.instinfo) === null || _authdetailsContext$i28 === void 0 ? void 0 : _authdetailsContext$i28.contactinfo.instid) == '67d6bda67adf6' && /*#__PURE__*/React__default["default"].createElement("div", {
30348
+ className: "row m-0 w-100 anim"
30349
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
30350
+ className: "col-lg-12 d-flex justify-content-start pl-3 pr-3"
30351
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
30352
+ onClick: function onClick() {
30353
+ setopenmenuCanvas(false);
30354
+ routingcountext(StaticPagesLinksContext.Compare);
30355
+ setmenuactive(false);
30356
+ }
30357
+ }, /*#__PURE__*/React__default["default"].createElement("p", {
30358
+ className: "".concat(header_cssstyles.navbar_item_text_responsive) + ' mb-0 p-0 '
30359
+ }, lang.compare))), /*#__PURE__*/React__default["default"].createElement("div", {
30360
+ className: "col-lg-12 p-0"
30361
+ }, /*#__PURE__*/React__default["default"].createElement("hr", {
30362
+ className: "mt-3 mb-3",
30363
+ style: {
30364
+ borderColor: sectionproperties.resp_header_separatorbg
30365
+ }
30261
30366
  }))), templateproperties_context.separatepolicies == 'No' && templateproperties_context.showpolicies == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
30262
30367
  className: "row m-0 w-100"
30263
30368
  }, /*#__PURE__*/React__default["default"].createElement("div", {
@@ -30352,7 +30457,7 @@
30352
30457
  style: {
30353
30458
  borderColor: sectionproperties.resp_header_separatorbg
30354
30459
  }
30355
- }))), authdetailsContext != undefined && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i26 = authdetailsContext.instinfo) === null || _authdetailsContext$i26 === void 0 || (_authdetailsContext$i26 = _authdetailsContext$i26.instcurrencies) === null || _authdetailsContext$i26 === void 0 ? void 0 : _authdetailsContext$i26.length) > 1 && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i27 = authdetailsContext.instinfo) === null || _authdetailsContext$i27 === void 0 ? void 0 : _authdetailsContext$i27.contactinfo.instid) == '67f69c023cbd4' && /*#__PURE__*/React__default["default"].createElement("div", {
30460
+ }))), authdetailsContext != undefined && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i29 = authdetailsContext.instinfo) === null || _authdetailsContext$i29 === void 0 || (_authdetailsContext$i29 = _authdetailsContext$i29.instcurrencies) === null || _authdetailsContext$i29 === void 0 ? void 0 : _authdetailsContext$i29.length) > 1 && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i30 = authdetailsContext.instinfo) === null || _authdetailsContext$i30 === void 0 ? void 0 : _authdetailsContext$i30.contactinfo.instid) == '67f69c023cbd4' && /*#__PURE__*/React__default["default"].createElement("div", {
30356
30461
  "class": "row m-0 w-100 pl-3 pr-3"
30357
30462
  }, /*#__PURE__*/React__default["default"].createElement("div", {
30358
30463
  "class": header_cssstyles.navbar_item_text_responsive + ' col-lg-12 p-0 d-flex align-items-center justify-content-start mb-2 '
@@ -30370,7 +30475,7 @@
30370
30475
  background: '#f4f4f4',
30371
30476
  borderRadius: 5
30372
30477
  }
30373
- }, authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i28 = authdetailsContext.instinfo) === null || _authdetailsContext$i28 === void 0 || (_authdetailsContext$i28 = _authdetailsContext$i28.instcurrencies) === null || _authdetailsContext$i28 === void 0 ? void 0 : _authdetailsContext$i28.map(function (item, index) {
30478
+ }, authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i31 = authdetailsContext.instinfo) === null || _authdetailsContext$i31 === void 0 || (_authdetailsContext$i31 = _authdetailsContext$i31.instcurrencies) === null || _authdetailsContext$i31 === void 0 ? void 0 : _authdetailsContext$i31.map(function (item, index) {
30374
30479
  return /*#__PURE__*/React__default["default"].createElement("div", {
30375
30480
  "class": header_cssstyles.navbar_item_text_responsive + ' col-lg-12 p-0 text-start py-2 px-2 cursor-pointer ',
30376
30481
  onClick: function onClick() {
@@ -56504,7 +56609,7 @@
56504
56609
  fontSize: 14,
56505
56610
  fontWeight: 400
56506
56611
  }
56507
- }, langdetect == 'en' ? 'Units No. (40, 41, 42), Industrial Zone, Arab Al-Awamer Complex, Assiut Governorate' : langdetect == 'fr' ? 'Unités n° (40, 41, 42), Zone Industrielle, Complexe Arab Al-Awamer, Gouvernorat d’Assiout' : 'الوحدات رقم (40، 41، 42)، المنطقة الصناعية، مجمع عرب العوامر، محافظة أسيوط')))), /*#__PURE__*/React__default["default"].createElement("div", {
56612
+ }, langdetect == 'en' ? 'Units No. (40, 41, 42, 83, 84, 85, 86, 87, 88, 83, 84, 85, 86, 87, 88), Industrial Zone, Arab Al-Awamer Complex, Assiut Governorate' : langdetect == 'fr' ? 'Unités n° (40, 41, 42, 83, 84, 85, 86, 87, 88), Zone Industrielle, Complexe Arab Al-Awamer, Gouvernorat d’Assiout' : 'الوحدات رقم (40، 41، 42)، المنطقة الصناعية، مجمع عرب العوامر، محافظة أسيوط')))), /*#__PURE__*/React__default["default"].createElement("div", {
56508
56613
  "class": "col-lg-4 col-md-12 d-none d-md-flex flex-column mb-md-3 mt-3"
56509
56614
  }, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.Accordion, {
56510
56615
  "class": "w-100",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabexseriescomponents",
3
- "version": "0.50.125",
3
+ "version": "0.50.127",
4
4
  "type": "module",
5
5
  "description": "your description",
6
6
  "main": "dist/index.cjs.js",