tabexseriescomponents 0.2.954 → 0.2.956
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 +62 -28
- package/dist/index.esm.js +62 -28
- package/dist/index.umd.js +62 -28
- package/package.json +1 -1
- package/src.zip +0 -0
package/dist/index.cjs.js
CHANGED
|
@@ -3830,9 +3830,9 @@ var Product_itemtype = function Product_itemtype(props) {
|
|
|
3830
3830
|
}, /*#__PURE__*/React__default["default"].createElement(FiLayers.FiLayers, {
|
|
3831
3831
|
size: 26
|
|
3832
3832
|
}))), productimagesarray.length != 0 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
3833
|
-
"class": sectionproperties.showthumbnail == 'Hide' ? 'w-100 d-block d-md-none hidethumbnail' : 'w-100 d-block d-md-none',
|
|
3833
|
+
"class": sectionproperties.showthumbnail == 'Hide' ? 'w-100 d-block d-md-none hidethumbnail' : productinfo_cssstyles.showthumbnail + ' w-100 d-block d-md-none showthumbnail',
|
|
3834
3834
|
style: {
|
|
3835
|
-
borderRadius: sectionproperties.imageborderradius + 'px',
|
|
3835
|
+
borderRadius: sectionproperties.showthumbnail == 'Hide' ? sectionproperties.imageborderradius + 'px' : 0,
|
|
3836
3836
|
overflow: 'hidden',
|
|
3837
3837
|
// height: '500px',
|
|
3838
3838
|
// height: sectionproperties.evencols == 'Yes' ? '550px' : '',
|
|
@@ -9853,6 +9853,11 @@ var Productinfo = function Productinfo(props) {
|
|
|
9853
9853
|
// );
|
|
9854
9854
|
// };
|
|
9855
9855
|
var productinfo_cssstyles = _defineProperty__default["default"]({
|
|
9856
|
+
// showthumbnail: css({
|
|
9857
|
+
// '.image-gallery-image': {
|
|
9858
|
+
// borderRadius: '30px',
|
|
9859
|
+
// },
|
|
9860
|
+
// }),
|
|
9856
9861
|
relatedproducttitle: glamor.css({
|
|
9857
9862
|
fontSize: sectionproperties.relatedproductstitlefontsize + 'px',
|
|
9858
9863
|
color: sectionproperties.relatedproductstitlecolor,
|
|
@@ -70661,6 +70666,11 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
70661
70666
|
visible = _useState4[0],
|
|
70662
70667
|
setVisible = _useState4[1];
|
|
70663
70668
|
props.actions.ikimagecredcontext;
|
|
70669
|
+
var _useState5 = React.useState([]),
|
|
70670
|
+
_useState6 = _slicedToArray__default["default"](_useState5, 2),
|
|
70671
|
+
cardsarray = _useState6[0],
|
|
70672
|
+
setcardsarray = _useState6[1];
|
|
70673
|
+
var langdetect = props.actions.langdetect;
|
|
70664
70674
|
React.useEffect(function () {
|
|
70665
70675
|
var secpropobj = {};
|
|
70666
70676
|
StatePagePropertiesContext.pageobj.sections.forEach(function (sectionitem, sectionindex) {
|
|
@@ -70672,6 +70682,44 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
70672
70682
|
});
|
|
70673
70683
|
setsectionproperties(_objectSpread$12({}, secpropobj));
|
|
70674
70684
|
}, [StatePagePropertiesContext]);
|
|
70685
|
+
React.useEffect(function () {
|
|
70686
|
+
if (sectionproperties.length != 0) {
|
|
70687
|
+
if (sectionproperties.card_arrayofobjects != null) {
|
|
70688
|
+
var bgsection_imagearrayofobjsparsed = JSON.parse(sectionproperties.card_arrayofobjects);
|
|
70689
|
+
if (Array.isArray(bgsection_imagearrayofobjsparsed)) {
|
|
70690
|
+
setcardsarray(_toConsumableArray__default["default"](bgsection_imagearrayofobjsparsed));
|
|
70691
|
+
}
|
|
70692
|
+
}
|
|
70693
|
+
}
|
|
70694
|
+
}, [sectionproperties]);
|
|
70695
|
+
var section_styles = {
|
|
70696
|
+
textstyle: glamor.css({
|
|
70697
|
+
fontSize: sectionproperties.generaltext_fontSize + 'px',
|
|
70698
|
+
color: sectionproperties.generaltext_fontColor,
|
|
70699
|
+
fontWeight: sectionproperties.generaltext_fontWeight,
|
|
70700
|
+
opacity: sectionproperties.generaltext_opacity,
|
|
70701
|
+
// fontSize: 40,
|
|
70702
|
+
// color: '#fff',
|
|
70703
|
+
// opacity: 0.7,
|
|
70704
|
+
marginLeft: '100px',
|
|
70705
|
+
marginRight: '100px',
|
|
70706
|
+
'@media (max-width: 800px)': {
|
|
70707
|
+
fontSize: sectionproperties.generaltext_fontsizeresponsive + 'px'
|
|
70708
|
+
}
|
|
70709
|
+
}),
|
|
70710
|
+
container: glamor.css({
|
|
70711
|
+
backgroundColor: sectionproperties.backgroundColor,
|
|
70712
|
+
paddingTop: sectionproperties.paddingTop + 'px',
|
|
70713
|
+
paddingBottom: sectionproperties.paddingBottom + 'px',
|
|
70714
|
+
// background: '#252223',
|
|
70715
|
+
// paddingTop: '30px',
|
|
70716
|
+
// paddingBottom: '30px',
|
|
70717
|
+
'@media (max-width: 800px)': {
|
|
70718
|
+
paddingTop: sectionproperties.paddingtopresponsive + 'px',
|
|
70719
|
+
paddingBottom: sectionproperties.paddingbottomresponsive + 'px'
|
|
70720
|
+
}
|
|
70721
|
+
})
|
|
70722
|
+
};
|
|
70675
70723
|
React.useEffect(function () {
|
|
70676
70724
|
if (sectionproperties !== null && sectionproperties !== void 0 && sectionproperties.durationInSeconds) {
|
|
70677
70725
|
var timeout = setTimeout(function () {
|
|
@@ -70685,34 +70733,20 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
70685
70733
|
}, [sectionproperties]);
|
|
70686
70734
|
if (!visible) return null;
|
|
70687
70735
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70688
|
-
"class": ' row ml-0 mr-0 d-flex justify-content-between w-100 align-items-center '
|
|
70689
|
-
|
|
70690
|
-
|
|
70691
|
-
|
|
70692
|
-
}
|
|
70736
|
+
"class": section_styles.container + ' row ml-0 mr-0 d-flex justify-content-between w-100 align-items-center '
|
|
70737
|
+
// data-aos={'fade-up'}
|
|
70738
|
+
,
|
|
70739
|
+
style: {}
|
|
70693
70740
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70694
70741
|
"class": "rotating-text-container rotating-text-containermarqueesection"
|
|
70695
70742
|
}, /*#__PURE__*/React__default["default"].createElement("span", {
|
|
70696
70743
|
"class": "d-flex flex-row align-items-center rotating-text"
|
|
70697
|
-
},
|
|
70698
|
-
"
|
|
70699
|
-
|
|
70700
|
-
|
|
70701
|
-
|
|
70702
|
-
|
|
70703
|
-
marginLeft: '100px',
|
|
70704
|
-
marginRight: '100px'
|
|
70705
|
-
}
|
|
70706
|
-
}, "Integrated Health"), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
70707
|
-
"class": ' mb-0 p-0 font-md-20 ',
|
|
70708
|
-
style: {
|
|
70709
|
-
fontSize: 180,
|
|
70710
|
-
color: '#000',
|
|
70711
|
-
opacity: 0.3,
|
|
70712
|
-
marginLeft: '100px',
|
|
70713
|
-
marginRight: '100px'
|
|
70714
|
-
}
|
|
70715
|
-
}, "Integrated Health"))));
|
|
70744
|
+
}, cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70745
|
+
return /*#__PURE__*/React__default["default"].createElement("p", {
|
|
70746
|
+
"class": section_styles.textstyle + ' mb-0 p-0 ',
|
|
70747
|
+
style: {}
|
|
70748
|
+
}, langdetect == 'en' ? cardinfoitem.arraytitleen : cardinfoitem.arraytitlear);
|
|
70749
|
+
}))));
|
|
70716
70750
|
};
|
|
70717
70751
|
|
|
70718
70752
|
function ownKeys$11(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; }
|
|
@@ -71832,7 +71866,7 @@ var Freetextsection = function Freetextsection(props) {
|
|
|
71832
71866
|
fontWeight: sectionproperties.prodCatFontWeight,
|
|
71833
71867
|
color: sectionproperties.prodCatColor
|
|
71834
71868
|
}
|
|
71835
|
-
},
|
|
71869
|
+
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr)))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i3 = authdetailsContext.instinfo) === null || _authdetailsContext$i3 === void 0 ? void 0 : _authdetailsContext$i3.contactinfo.instid) == '682c6a888d70e' && window.location.pathname == '/home' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
71836
71870
|
"class": "col-lg-12 p-0 allcentered d-flex flex-column pt-5 pb-5 px-sm-3",
|
|
71837
71871
|
style: {
|
|
71838
71872
|
// background: 'white',
|
|
@@ -74001,7 +74035,7 @@ var Servicesection = function Servicesection(props) {
|
|
|
74001
74035
|
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr);
|
|
74002
74036
|
};
|
|
74003
74037
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
74004
|
-
"class": ' row ml-0 mr-0 align-items-center w-md-100 ',
|
|
74038
|
+
"class": ' row ml-0 mr-0 align-items-center w-md-100 mx-auto ',
|
|
74005
74039
|
style: {
|
|
74006
74040
|
width: sectionproperties.width + 'vw',
|
|
74007
74041
|
marginTop: sectionproperties.marginTop + 'px',
|
package/dist/index.esm.js
CHANGED
|
@@ -3779,9 +3779,9 @@ var Product_itemtype = function Product_itemtype(props) {
|
|
|
3779
3779
|
}, /*#__PURE__*/React.createElement(FiLayers, {
|
|
3780
3780
|
size: 26
|
|
3781
3781
|
}))), productimagesarray.length != 0 && /*#__PURE__*/React.createElement("div", {
|
|
3782
|
-
"class": sectionproperties.showthumbnail == 'Hide' ? 'w-100 d-block d-md-none hidethumbnail' : 'w-100 d-block d-md-none',
|
|
3782
|
+
"class": sectionproperties.showthumbnail == 'Hide' ? 'w-100 d-block d-md-none hidethumbnail' : productinfo_cssstyles.showthumbnail + ' w-100 d-block d-md-none showthumbnail',
|
|
3783
3783
|
style: {
|
|
3784
|
-
borderRadius: sectionproperties.imageborderradius + 'px',
|
|
3784
|
+
borderRadius: sectionproperties.showthumbnail == 'Hide' ? sectionproperties.imageborderradius + 'px' : 0,
|
|
3785
3785
|
overflow: 'hidden',
|
|
3786
3786
|
// height: '500px',
|
|
3787
3787
|
// height: sectionproperties.evencols == 'Yes' ? '550px' : '',
|
|
@@ -9802,6 +9802,11 @@ var Productinfo = function Productinfo(props) {
|
|
|
9802
9802
|
// );
|
|
9803
9803
|
// };
|
|
9804
9804
|
var productinfo_cssstyles = _defineProperty({
|
|
9805
|
+
// showthumbnail: css({
|
|
9806
|
+
// '.image-gallery-image': {
|
|
9807
|
+
// borderRadius: '30px',
|
|
9808
|
+
// },
|
|
9809
|
+
// }),
|
|
9805
9810
|
relatedproducttitle: css({
|
|
9806
9811
|
fontSize: sectionproperties.relatedproductstitlefontsize + 'px',
|
|
9807
9812
|
color: sectionproperties.relatedproductstitlecolor,
|
|
@@ -70610,6 +70615,11 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
70610
70615
|
visible = _useState4[0],
|
|
70611
70616
|
setVisible = _useState4[1];
|
|
70612
70617
|
props.actions.ikimagecredcontext;
|
|
70618
|
+
var _useState5 = useState([]),
|
|
70619
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
70620
|
+
cardsarray = _useState6[0],
|
|
70621
|
+
setcardsarray = _useState6[1];
|
|
70622
|
+
var langdetect = props.actions.langdetect;
|
|
70613
70623
|
useEffect(function () {
|
|
70614
70624
|
var secpropobj = {};
|
|
70615
70625
|
StatePagePropertiesContext.pageobj.sections.forEach(function (sectionitem, sectionindex) {
|
|
@@ -70621,6 +70631,44 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
70621
70631
|
});
|
|
70622
70632
|
setsectionproperties(_objectSpread$12({}, secpropobj));
|
|
70623
70633
|
}, [StatePagePropertiesContext]);
|
|
70634
|
+
useEffect(function () {
|
|
70635
|
+
if (sectionproperties.length != 0) {
|
|
70636
|
+
if (sectionproperties.card_arrayofobjects != null) {
|
|
70637
|
+
var bgsection_imagearrayofobjsparsed = JSON.parse(sectionproperties.card_arrayofobjects);
|
|
70638
|
+
if (Array.isArray(bgsection_imagearrayofobjsparsed)) {
|
|
70639
|
+
setcardsarray(_toConsumableArray(bgsection_imagearrayofobjsparsed));
|
|
70640
|
+
}
|
|
70641
|
+
}
|
|
70642
|
+
}
|
|
70643
|
+
}, [sectionproperties]);
|
|
70644
|
+
var section_styles = {
|
|
70645
|
+
textstyle: css({
|
|
70646
|
+
fontSize: sectionproperties.generaltext_fontSize + 'px',
|
|
70647
|
+
color: sectionproperties.generaltext_fontColor,
|
|
70648
|
+
fontWeight: sectionproperties.generaltext_fontWeight,
|
|
70649
|
+
opacity: sectionproperties.generaltext_opacity,
|
|
70650
|
+
// fontSize: 40,
|
|
70651
|
+
// color: '#fff',
|
|
70652
|
+
// opacity: 0.7,
|
|
70653
|
+
marginLeft: '100px',
|
|
70654
|
+
marginRight: '100px',
|
|
70655
|
+
'@media (max-width: 800px)': {
|
|
70656
|
+
fontSize: sectionproperties.generaltext_fontsizeresponsive + 'px'
|
|
70657
|
+
}
|
|
70658
|
+
}),
|
|
70659
|
+
container: css({
|
|
70660
|
+
backgroundColor: sectionproperties.backgroundColor,
|
|
70661
|
+
paddingTop: sectionproperties.paddingTop + 'px',
|
|
70662
|
+
paddingBottom: sectionproperties.paddingBottom + 'px',
|
|
70663
|
+
// background: '#252223',
|
|
70664
|
+
// paddingTop: '30px',
|
|
70665
|
+
// paddingBottom: '30px',
|
|
70666
|
+
'@media (max-width: 800px)': {
|
|
70667
|
+
paddingTop: sectionproperties.paddingtopresponsive + 'px',
|
|
70668
|
+
paddingBottom: sectionproperties.paddingbottomresponsive + 'px'
|
|
70669
|
+
}
|
|
70670
|
+
})
|
|
70671
|
+
};
|
|
70624
70672
|
useEffect(function () {
|
|
70625
70673
|
if (sectionproperties !== null && sectionproperties !== void 0 && sectionproperties.durationInSeconds) {
|
|
70626
70674
|
var timeout = setTimeout(function () {
|
|
@@ -70634,34 +70682,20 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
70634
70682
|
}, [sectionproperties]);
|
|
70635
70683
|
if (!visible) return null;
|
|
70636
70684
|
return /*#__PURE__*/React.createElement("div", {
|
|
70637
|
-
"class": ' row ml-0 mr-0 d-flex justify-content-between w-100 align-items-center '
|
|
70638
|
-
|
|
70639
|
-
|
|
70640
|
-
|
|
70641
|
-
}
|
|
70685
|
+
"class": section_styles.container + ' row ml-0 mr-0 d-flex justify-content-between w-100 align-items-center '
|
|
70686
|
+
// data-aos={'fade-up'}
|
|
70687
|
+
,
|
|
70688
|
+
style: {}
|
|
70642
70689
|
}, /*#__PURE__*/React.createElement("div", {
|
|
70643
70690
|
"class": "rotating-text-container rotating-text-containermarqueesection"
|
|
70644
70691
|
}, /*#__PURE__*/React.createElement("span", {
|
|
70645
70692
|
"class": "d-flex flex-row align-items-center rotating-text"
|
|
70646
|
-
},
|
|
70647
|
-
"
|
|
70648
|
-
|
|
70649
|
-
|
|
70650
|
-
|
|
70651
|
-
|
|
70652
|
-
marginLeft: '100px',
|
|
70653
|
-
marginRight: '100px'
|
|
70654
|
-
}
|
|
70655
|
-
}, "Integrated Health"), /*#__PURE__*/React.createElement("p", {
|
|
70656
|
-
"class": ' mb-0 p-0 font-md-20 ',
|
|
70657
|
-
style: {
|
|
70658
|
-
fontSize: 180,
|
|
70659
|
-
color: '#000',
|
|
70660
|
-
opacity: 0.3,
|
|
70661
|
-
marginLeft: '100px',
|
|
70662
|
-
marginRight: '100px'
|
|
70663
|
-
}
|
|
70664
|
-
}, "Integrated Health"))));
|
|
70693
|
+
}, cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70694
|
+
return /*#__PURE__*/React.createElement("p", {
|
|
70695
|
+
"class": section_styles.textstyle + ' mb-0 p-0 ',
|
|
70696
|
+
style: {}
|
|
70697
|
+
}, langdetect == 'en' ? cardinfoitem.arraytitleen : cardinfoitem.arraytitlear);
|
|
70698
|
+
}))));
|
|
70665
70699
|
};
|
|
70666
70700
|
|
|
70667
70701
|
function ownKeys$11(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; }
|
|
@@ -71781,7 +71815,7 @@ var Freetextsection = function Freetextsection(props) {
|
|
|
71781
71815
|
fontWeight: sectionproperties.prodCatFontWeight,
|
|
71782
71816
|
color: sectionproperties.prodCatColor
|
|
71783
71817
|
}
|
|
71784
|
-
},
|
|
71818
|
+
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr)))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i3 = authdetailsContext.instinfo) === null || _authdetailsContext$i3 === void 0 ? void 0 : _authdetailsContext$i3.contactinfo.instid) == '682c6a888d70e' && window.location.pathname == '/home' && /*#__PURE__*/React.createElement("div", {
|
|
71785
71819
|
"class": "col-lg-12 p-0 allcentered d-flex flex-column pt-5 pb-5 px-sm-3",
|
|
71786
71820
|
style: {
|
|
71787
71821
|
// background: 'white',
|
|
@@ -73950,7 +73984,7 @@ var Servicesection = function Servicesection(props) {
|
|
|
73950
73984
|
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr);
|
|
73951
73985
|
};
|
|
73952
73986
|
return /*#__PURE__*/React.createElement("div", {
|
|
73953
|
-
"class": ' row ml-0 mr-0 align-items-center w-md-100 ',
|
|
73987
|
+
"class": ' row ml-0 mr-0 align-items-center w-md-100 mx-auto ',
|
|
73954
73988
|
style: {
|
|
73955
73989
|
width: sectionproperties.width + 'vw',
|
|
73956
73990
|
marginTop: sectionproperties.marginTop + 'px',
|
package/dist/index.umd.js
CHANGED
|
@@ -3639,9 +3639,9 @@
|
|
|
3639
3639
|
}, /*#__PURE__*/React__default["default"].createElement(FiLayers.FiLayers, {
|
|
3640
3640
|
size: 26
|
|
3641
3641
|
}))), productimagesarray.length != 0 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
3642
|
-
"class": sectionproperties.showthumbnail == 'Hide' ? 'w-100 d-block d-md-none hidethumbnail' : 'w-100 d-block d-md-none',
|
|
3642
|
+
"class": sectionproperties.showthumbnail == 'Hide' ? 'w-100 d-block d-md-none hidethumbnail' : productinfo_cssstyles.showthumbnail + ' w-100 d-block d-md-none showthumbnail',
|
|
3643
3643
|
style: {
|
|
3644
|
-
borderRadius: sectionproperties.imageborderradius + 'px',
|
|
3644
|
+
borderRadius: sectionproperties.showthumbnail == 'Hide' ? sectionproperties.imageborderradius + 'px' : 0,
|
|
3645
3645
|
overflow: 'hidden',
|
|
3646
3646
|
// height: '500px',
|
|
3647
3647
|
// height: sectionproperties.evencols == 'Yes' ? '550px' : '',
|
|
@@ -9662,6 +9662,11 @@
|
|
|
9662
9662
|
// );
|
|
9663
9663
|
// };
|
|
9664
9664
|
var productinfo_cssstyles = _defineProperty__default["default"]({
|
|
9665
|
+
// showthumbnail: css({
|
|
9666
|
+
// '.image-gallery-image': {
|
|
9667
|
+
// borderRadius: '30px',
|
|
9668
|
+
// },
|
|
9669
|
+
// }),
|
|
9665
9670
|
relatedproducttitle: glamor.css({
|
|
9666
9671
|
fontSize: sectionproperties.relatedproductstitlefontsize + 'px',
|
|
9667
9672
|
color: sectionproperties.relatedproductstitlecolor,
|
|
@@ -70470,6 +70475,11 @@
|
|
|
70470
70475
|
visible = _useState4[0],
|
|
70471
70476
|
setVisible = _useState4[1];
|
|
70472
70477
|
props.actions.ikimagecredcontext;
|
|
70478
|
+
var _useState5 = React.useState([]),
|
|
70479
|
+
_useState6 = _slicedToArray__default["default"](_useState5, 2),
|
|
70480
|
+
cardsarray = _useState6[0],
|
|
70481
|
+
setcardsarray = _useState6[1];
|
|
70482
|
+
var langdetect = props.actions.langdetect;
|
|
70473
70483
|
React.useEffect(function () {
|
|
70474
70484
|
var secpropobj = {};
|
|
70475
70485
|
StatePagePropertiesContext.pageobj.sections.forEach(function (sectionitem, sectionindex) {
|
|
@@ -70481,6 +70491,44 @@
|
|
|
70481
70491
|
});
|
|
70482
70492
|
setsectionproperties(_objectSpread$12({}, secpropobj));
|
|
70483
70493
|
}, [StatePagePropertiesContext]);
|
|
70494
|
+
React.useEffect(function () {
|
|
70495
|
+
if (sectionproperties.length != 0) {
|
|
70496
|
+
if (sectionproperties.card_arrayofobjects != null) {
|
|
70497
|
+
var bgsection_imagearrayofobjsparsed = JSON.parse(sectionproperties.card_arrayofobjects);
|
|
70498
|
+
if (Array.isArray(bgsection_imagearrayofobjsparsed)) {
|
|
70499
|
+
setcardsarray(_toConsumableArray__default["default"](bgsection_imagearrayofobjsparsed));
|
|
70500
|
+
}
|
|
70501
|
+
}
|
|
70502
|
+
}
|
|
70503
|
+
}, [sectionproperties]);
|
|
70504
|
+
var section_styles = {
|
|
70505
|
+
textstyle: glamor.css({
|
|
70506
|
+
fontSize: sectionproperties.generaltext_fontSize + 'px',
|
|
70507
|
+
color: sectionproperties.generaltext_fontColor,
|
|
70508
|
+
fontWeight: sectionproperties.generaltext_fontWeight,
|
|
70509
|
+
opacity: sectionproperties.generaltext_opacity,
|
|
70510
|
+
// fontSize: 40,
|
|
70511
|
+
// color: '#fff',
|
|
70512
|
+
// opacity: 0.7,
|
|
70513
|
+
marginLeft: '100px',
|
|
70514
|
+
marginRight: '100px',
|
|
70515
|
+
'@media (max-width: 800px)': {
|
|
70516
|
+
fontSize: sectionproperties.generaltext_fontsizeresponsive + 'px'
|
|
70517
|
+
}
|
|
70518
|
+
}),
|
|
70519
|
+
container: glamor.css({
|
|
70520
|
+
backgroundColor: sectionproperties.backgroundColor,
|
|
70521
|
+
paddingTop: sectionproperties.paddingTop + 'px',
|
|
70522
|
+
paddingBottom: sectionproperties.paddingBottom + 'px',
|
|
70523
|
+
// background: '#252223',
|
|
70524
|
+
// paddingTop: '30px',
|
|
70525
|
+
// paddingBottom: '30px',
|
|
70526
|
+
'@media (max-width: 800px)': {
|
|
70527
|
+
paddingTop: sectionproperties.paddingtopresponsive + 'px',
|
|
70528
|
+
paddingBottom: sectionproperties.paddingbottomresponsive + 'px'
|
|
70529
|
+
}
|
|
70530
|
+
})
|
|
70531
|
+
};
|
|
70484
70532
|
React.useEffect(function () {
|
|
70485
70533
|
if (sectionproperties !== null && sectionproperties !== void 0 && sectionproperties.durationInSeconds) {
|
|
70486
70534
|
var timeout = setTimeout(function () {
|
|
@@ -70494,34 +70542,20 @@
|
|
|
70494
70542
|
}, [sectionproperties]);
|
|
70495
70543
|
if (!visible) return null;
|
|
70496
70544
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70497
|
-
"class": ' row ml-0 mr-0 d-flex justify-content-between w-100 align-items-center '
|
|
70498
|
-
|
|
70499
|
-
|
|
70500
|
-
|
|
70501
|
-
}
|
|
70545
|
+
"class": section_styles.container + ' row ml-0 mr-0 d-flex justify-content-between w-100 align-items-center '
|
|
70546
|
+
// data-aos={'fade-up'}
|
|
70547
|
+
,
|
|
70548
|
+
style: {}
|
|
70502
70549
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
70503
70550
|
"class": "rotating-text-container rotating-text-containermarqueesection"
|
|
70504
70551
|
}, /*#__PURE__*/React__default["default"].createElement("span", {
|
|
70505
70552
|
"class": "d-flex flex-row align-items-center rotating-text"
|
|
70506
|
-
},
|
|
70507
|
-
"
|
|
70508
|
-
|
|
70509
|
-
|
|
70510
|
-
|
|
70511
|
-
|
|
70512
|
-
marginLeft: '100px',
|
|
70513
|
-
marginRight: '100px'
|
|
70514
|
-
}
|
|
70515
|
-
}, "Integrated Health"), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
70516
|
-
"class": ' mb-0 p-0 font-md-20 ',
|
|
70517
|
-
style: {
|
|
70518
|
-
fontSize: 180,
|
|
70519
|
-
color: '#000',
|
|
70520
|
-
opacity: 0.3,
|
|
70521
|
-
marginLeft: '100px',
|
|
70522
|
-
marginRight: '100px'
|
|
70523
|
-
}
|
|
70524
|
-
}, "Integrated Health"))));
|
|
70553
|
+
}, cardsarray.map(function (cardinfoitem, cardinfoindex) {
|
|
70554
|
+
return /*#__PURE__*/React__default["default"].createElement("p", {
|
|
70555
|
+
"class": section_styles.textstyle + ' mb-0 p-0 ',
|
|
70556
|
+
style: {}
|
|
70557
|
+
}, langdetect == 'en' ? cardinfoitem.arraytitleen : cardinfoitem.arraytitlear);
|
|
70558
|
+
}))));
|
|
70525
70559
|
};
|
|
70526
70560
|
|
|
70527
70561
|
function ownKeys$11(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; }
|
|
@@ -71641,7 +71675,7 @@
|
|
|
71641
71675
|
fontWeight: sectionproperties.prodCatFontWeight,
|
|
71642
71676
|
color: sectionproperties.prodCatColor
|
|
71643
71677
|
}
|
|
71644
|
-
},
|
|
71678
|
+
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr)))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i3 = authdetailsContext.instinfo) === null || _authdetailsContext$i3 === void 0 ? void 0 : _authdetailsContext$i3.contactinfo.instid) == '682c6a888d70e' && window.location.pathname == '/home' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
71645
71679
|
"class": "col-lg-12 p-0 allcentered d-flex flex-column pt-5 pb-5 px-sm-3",
|
|
71646
71680
|
style: {
|
|
71647
71681
|
// background: 'white',
|
|
@@ -73810,7 +73844,7 @@
|
|
|
73810
73844
|
}, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr);
|
|
73811
73845
|
};
|
|
73812
73846
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
73813
|
-
"class": ' row ml-0 mr-0 align-items-center w-md-100 ',
|
|
73847
|
+
"class": ' row ml-0 mr-0 align-items-center w-md-100 mx-auto ',
|
|
73814
73848
|
style: {
|
|
73815
73849
|
width: sectionproperties.width + 'vw',
|
|
73816
73850
|
marginTop: sectionproperties.marginTop + 'px',
|
package/package.json
CHANGED
package/src.zip
ADDED
|
Binary file
|