tabexseriescomponents 0.0.622 → 0.0.623

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
@@ -60922,6 +60922,27 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
60922
60922
  }
60923
60923
  }, [sectionproperties]);
60924
60924
  var sectionStyles = {
60925
+ containerrrr: glamor.css({
60926
+ marginTop: sectionproperties.marginTop + 'px',
60927
+ marginBottom: sectionproperties.marginBottom + 'px',
60928
+ paddingLeft: sectionproperties.paddingLeft + 'px',
60929
+ paddingRight: sectionproperties.paddingRight + 'px',
60930
+ paddingTop: sectionproperties.paddingTop + 'px',
60931
+ paddingBottom: sectionproperties.paddingBottom + 'px',
60932
+ background: sectionproperties.backgroundColortransparent == 'Transparent' ? 'transparent' : sectionproperties.backgroundColor,
60933
+ borderBottomLeftRadius: sectionproperties.borderBottomLeftRadius + 'px',
60934
+ borderBottomRightRadius: sectionproperties.borderBottomRightRadius + 'px',
60935
+ borderTopLeftRadius: sectionproperties.borderTopLeftRadius + 'px',
60936
+ borderTopRightRadius: sectionproperties.borderTopRightRadius + 'px',
60937
+ border: sectionproperties.borderType == 'All' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60938
+ borderTop: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60939
+ borderBottom: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60940
+ borderLeftWidth: 0,
60941
+ borderRightWidth: 0,
60942
+ '@media (max-width: 800px)': {
60943
+ marginTop: sectionproperties.marginTopResp + 'px'
60944
+ }
60945
+ }),
60925
60946
  imgcontainer: glamor.css({
60926
60947
  ':before': {
60927
60948
  width: '100%',
@@ -60978,8 +60999,8 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
60978
60999
  }
60979
61000
  }),
60980
61001
  imageContainer: glamor.css({
60981
- width: sectionproperties.image_width + 'px',
60982
- height: sectionproperties.image_height + 'px',
61002
+ width: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.image_width + '%' : sectionproperties.image_width + 'px',
61003
+ height: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.image_height + '%' : sectionproperties.image_height + 'px',
60983
61004
  borderBottomLeftRadius: sectionproperties.image_borderBottomLeftRadius + 'px',
60984
61005
  borderBottomRightRadius: sectionproperties.image_borderBottomRightRadius + 'px',
60985
61006
  borderTopLeftRadius: sectionproperties.image_bordertopleftradius + 'px',
@@ -60991,8 +61012,8 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
60991
61012
  backgroundColor: sectionproperties.activedotcolor
60992
61013
  },
60993
61014
  '@media (max-width: 800px)': {
60994
- width: sectionproperties.innerwidthheightresp + 'px',
60995
- height: sectionproperties.innerwidthheightresp + 'px'
61015
+ width: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.innerwidthheightresp + '%' : sectionproperties.innerwidthheightresp + 'px',
61016
+ height: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.innerwidthheightresp + '%' : sectionproperties.innerwidthheightresp + 'px'
60996
61017
  }
60997
61018
  }),
60998
61019
  cardContainer: glamor.css({
@@ -61006,12 +61027,18 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
61006
61027
  }
61007
61028
  }),
61008
61029
  btnstyles: glamor.css({
61030
+ width: sectionproperties.generalbtn_width + 'px',
61031
+ height: sectionproperties.generalbtn_height + 'px',
61009
61032
  fontSize: sectionproperties.generalbtn_fontsize + 'px',
61010
61033
  color: sectionproperties.generalbtn_textColor,
61011
61034
  fontWeight: sectionproperties.generalbtn_fontweight,
61012
- textDecoration: 'underline',
61035
+ textDecoration: sectionproperties.textdecoration == 'None' ? 'none' : 'underline',
61036
+ backgroundColor: sectionproperties.generalbtn_bgColor,
61037
+ borderRadius: sectionproperties.generalbtnborderradius,
61013
61038
  ':hover': {
61014
- color: sectionproperties.generalbtn_textColoronhover
61039
+ color: sectionproperties.generalbtn_textColoronhover,
61040
+ backgroundColor: sectionproperties.generalbtn_bgColoronhover,
61041
+ transition: '.3s'
61015
61042
  }
61016
61043
  }),
61017
61044
  outercontainer: glamor.css({
@@ -61061,25 +61088,8 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
61061
61088
  left: 0
61062
61089
  }
61063
61090
  })), /*#__PURE__*/React__default["default"].createElement("div", {
61064
- "class": "row ml-0 mr-0 w-100 d-flex justify-content-center pl-md-3 pr-md-3 px-2015-3",
61065
- style: {
61066
- marginTop: sectionproperties.marginTop + 'px',
61067
- marginBottom: sectionproperties.marginBottom + 'px',
61068
- paddingLeft: sectionproperties.paddingLeft + 'px',
61069
- paddingRight: sectionproperties.paddingRight + 'px',
61070
- paddingTop: sectionproperties.paddingTop + 'px',
61071
- paddingBottom: sectionproperties.paddingBottom + 'px',
61072
- background: sectionproperties.backgroundColortransparent == 'Transparent' ? 'transparent' : sectionproperties.backgroundColor,
61073
- borderBottomLeftRadius: sectionproperties.borderBottomLeftRadius + 'px',
61074
- borderBottomRightRadius: sectionproperties.borderBottomRightRadius + 'px',
61075
- borderTopLeftRadius: sectionproperties.borderTopLeftRadius + 'px',
61076
- borderTopRightRadius: sectionproperties.borderTopRightRadius + 'px',
61077
- border: sectionproperties.borderType == 'All' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
61078
- borderTop: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
61079
- borderBottom: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
61080
- borderLeftWidth: 0,
61081
- borderRightWidth: 0
61082
- }
61091
+ "class": sectionStyles.containerrrr + ' row ml-0 mr-0 w-100 d-flex justify-content-center pl-md-3 pr-md-3 px-2015-3 ',
61092
+ style: {}
61083
61093
  }, sectionproperties.sectiontitleshow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
61084
61094
  "class": "col-lg-12 allcentered p-0",
61085
61095
  style: {
@@ -61149,7 +61159,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
61149
61159
  // if (cardinfoitem.iscardclickable == 'Yes') {
61150
61160
  // window.open(cardinfoitem.btnlink, '_blank');
61151
61161
  // }
61152
- if (cardinfoitem.btntype == 'Web Product Link') {
61162
+ if (cardinfoitem.btntype == 'Web Product Link' || cardinfoitem.btntype == 'App/Web Page') {
61153
61163
  routingcountext(cardinfoitem.btnlink, false, '');
61154
61164
  } else if (cardinfoitem.iscardclickable == 'Yes' && cardinfoitem.clickabletabtype == 'Same Tab' && cardinfoitem.btntype != 'Web Product Link') {
61155
61165
  // window.open(cardinfoitem.btnlink, '_target');
package/dist/index.esm.js CHANGED
@@ -60873,6 +60873,27 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
60873
60873
  }
60874
60874
  }, [sectionproperties]);
60875
60875
  var sectionStyles = {
60876
+ containerrrr: css({
60877
+ marginTop: sectionproperties.marginTop + 'px',
60878
+ marginBottom: sectionproperties.marginBottom + 'px',
60879
+ paddingLeft: sectionproperties.paddingLeft + 'px',
60880
+ paddingRight: sectionproperties.paddingRight + 'px',
60881
+ paddingTop: sectionproperties.paddingTop + 'px',
60882
+ paddingBottom: sectionproperties.paddingBottom + 'px',
60883
+ background: sectionproperties.backgroundColortransparent == 'Transparent' ? 'transparent' : sectionproperties.backgroundColor,
60884
+ borderBottomLeftRadius: sectionproperties.borderBottomLeftRadius + 'px',
60885
+ borderBottomRightRadius: sectionproperties.borderBottomRightRadius + 'px',
60886
+ borderTopLeftRadius: sectionproperties.borderTopLeftRadius + 'px',
60887
+ borderTopRightRadius: sectionproperties.borderTopRightRadius + 'px',
60888
+ border: sectionproperties.borderType == 'All' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60889
+ borderTop: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60890
+ borderBottom: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60891
+ borderLeftWidth: 0,
60892
+ borderRightWidth: 0,
60893
+ '@media (max-width: 800px)': {
60894
+ marginTop: sectionproperties.marginTopResp + 'px'
60895
+ }
60896
+ }),
60876
60897
  imgcontainer: css({
60877
60898
  ':before': {
60878
60899
  width: '100%',
@@ -60929,8 +60950,8 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
60929
60950
  }
60930
60951
  }),
60931
60952
  imageContainer: css({
60932
- width: sectionproperties.image_width + 'px',
60933
- height: sectionproperties.image_height + 'px',
60953
+ width: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.image_width + '%' : sectionproperties.image_width + 'px',
60954
+ height: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.image_height + '%' : sectionproperties.image_height + 'px',
60934
60955
  borderBottomLeftRadius: sectionproperties.image_borderBottomLeftRadius + 'px',
60935
60956
  borderBottomRightRadius: sectionproperties.image_borderBottomRightRadius + 'px',
60936
60957
  borderTopLeftRadius: sectionproperties.image_bordertopleftradius + 'px',
@@ -60942,8 +60963,8 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
60942
60963
  backgroundColor: sectionproperties.activedotcolor
60943
60964
  },
60944
60965
  '@media (max-width: 800px)': {
60945
- width: sectionproperties.innerwidthheightresp + 'px',
60946
- height: sectionproperties.innerwidthheightresp + 'px'
60966
+ width: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.innerwidthheightresp + '%' : sectionproperties.innerwidthheightresp + 'px',
60967
+ height: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.innerwidthheightresp + '%' : sectionproperties.innerwidthheightresp + 'px'
60947
60968
  }
60948
60969
  }),
60949
60970
  cardContainer: css({
@@ -60957,12 +60978,18 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
60957
60978
  }
60958
60979
  }),
60959
60980
  btnstyles: css({
60981
+ width: sectionproperties.generalbtn_width + 'px',
60982
+ height: sectionproperties.generalbtn_height + 'px',
60960
60983
  fontSize: sectionproperties.generalbtn_fontsize + 'px',
60961
60984
  color: sectionproperties.generalbtn_textColor,
60962
60985
  fontWeight: sectionproperties.generalbtn_fontweight,
60963
- textDecoration: 'underline',
60986
+ textDecoration: sectionproperties.textdecoration == 'None' ? 'none' : 'underline',
60987
+ backgroundColor: sectionproperties.generalbtn_bgColor,
60988
+ borderRadius: sectionproperties.generalbtnborderradius,
60964
60989
  ':hover': {
60965
- color: sectionproperties.generalbtn_textColoronhover
60990
+ color: sectionproperties.generalbtn_textColoronhover,
60991
+ backgroundColor: sectionproperties.generalbtn_bgColoronhover,
60992
+ transition: '.3s'
60966
60993
  }
60967
60994
  }),
60968
60995
  outercontainer: css({
@@ -61012,25 +61039,8 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
61012
61039
  left: 0
61013
61040
  }
61014
61041
  })), /*#__PURE__*/React.createElement("div", {
61015
- "class": "row ml-0 mr-0 w-100 d-flex justify-content-center pl-md-3 pr-md-3 px-2015-3",
61016
- style: {
61017
- marginTop: sectionproperties.marginTop + 'px',
61018
- marginBottom: sectionproperties.marginBottom + 'px',
61019
- paddingLeft: sectionproperties.paddingLeft + 'px',
61020
- paddingRight: sectionproperties.paddingRight + 'px',
61021
- paddingTop: sectionproperties.paddingTop + 'px',
61022
- paddingBottom: sectionproperties.paddingBottom + 'px',
61023
- background: sectionproperties.backgroundColortransparent == 'Transparent' ? 'transparent' : sectionproperties.backgroundColor,
61024
- borderBottomLeftRadius: sectionproperties.borderBottomLeftRadius + 'px',
61025
- borderBottomRightRadius: sectionproperties.borderBottomRightRadius + 'px',
61026
- borderTopLeftRadius: sectionproperties.borderTopLeftRadius + 'px',
61027
- borderTopRightRadius: sectionproperties.borderTopRightRadius + 'px',
61028
- border: sectionproperties.borderType == 'All' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
61029
- borderTop: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
61030
- borderBottom: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
61031
- borderLeftWidth: 0,
61032
- borderRightWidth: 0
61033
- }
61042
+ "class": sectionStyles.containerrrr + ' row ml-0 mr-0 w-100 d-flex justify-content-center pl-md-3 pr-md-3 px-2015-3 ',
61043
+ style: {}
61034
61044
  }, sectionproperties.sectiontitleshow == 'Show' && /*#__PURE__*/React.createElement("div", {
61035
61045
  "class": "col-lg-12 allcentered p-0",
61036
61046
  style: {
@@ -61100,7 +61110,7 @@ var ServicesectionCenteredcards = function ServicesectionCenteredcards(props) {
61100
61110
  // if (cardinfoitem.iscardclickable == 'Yes') {
61101
61111
  // window.open(cardinfoitem.btnlink, '_blank');
61102
61112
  // }
61103
- if (cardinfoitem.btntype == 'Web Product Link') {
61113
+ if (cardinfoitem.btntype == 'Web Product Link' || cardinfoitem.btntype == 'App/Web Page') {
61104
61114
  routingcountext(cardinfoitem.btnlink, false, '');
61105
61115
  } else if (cardinfoitem.iscardclickable == 'Yes' && cardinfoitem.clickabletabtype == 'Same Tab' && cardinfoitem.btntype != 'Web Product Link') {
61106
61116
  // window.open(cardinfoitem.btnlink, '_target');
package/dist/index.umd.js CHANGED
@@ -60746,6 +60746,27 @@
60746
60746
  }
60747
60747
  }, [sectionproperties]);
60748
60748
  var sectionStyles = {
60749
+ containerrrr: glamor.css({
60750
+ marginTop: sectionproperties.marginTop + 'px',
60751
+ marginBottom: sectionproperties.marginBottom + 'px',
60752
+ paddingLeft: sectionproperties.paddingLeft + 'px',
60753
+ paddingRight: sectionproperties.paddingRight + 'px',
60754
+ paddingTop: sectionproperties.paddingTop + 'px',
60755
+ paddingBottom: sectionproperties.paddingBottom + 'px',
60756
+ background: sectionproperties.backgroundColortransparent == 'Transparent' ? 'transparent' : sectionproperties.backgroundColor,
60757
+ borderBottomLeftRadius: sectionproperties.borderBottomLeftRadius + 'px',
60758
+ borderBottomRightRadius: sectionproperties.borderBottomRightRadius + 'px',
60759
+ borderTopLeftRadius: sectionproperties.borderTopLeftRadius + 'px',
60760
+ borderTopRightRadius: sectionproperties.borderTopRightRadius + 'px',
60761
+ border: sectionproperties.borderType == 'All' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60762
+ borderTop: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60763
+ borderBottom: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60764
+ borderLeftWidth: 0,
60765
+ borderRightWidth: 0,
60766
+ '@media (max-width: 800px)': {
60767
+ marginTop: sectionproperties.marginTopResp + 'px'
60768
+ }
60769
+ }),
60749
60770
  imgcontainer: glamor.css({
60750
60771
  ':before': {
60751
60772
  width: '100%',
@@ -60802,8 +60823,8 @@
60802
60823
  }
60803
60824
  }),
60804
60825
  imageContainer: glamor.css({
60805
- width: sectionproperties.image_width + 'px',
60806
- height: sectionproperties.image_height + 'px',
60826
+ width: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.image_width + '%' : sectionproperties.image_width + 'px',
60827
+ height: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.image_height + '%' : sectionproperties.image_height + 'px',
60807
60828
  borderBottomLeftRadius: sectionproperties.image_borderBottomLeftRadius + 'px',
60808
60829
  borderBottomRightRadius: sectionproperties.image_borderBottomRightRadius + 'px',
60809
60830
  borderTopLeftRadius: sectionproperties.image_bordertopleftradius + 'px',
@@ -60815,8 +60836,8 @@
60815
60836
  backgroundColor: sectionproperties.activedotcolor
60816
60837
  },
60817
60838
  '@media (max-width: 800px)': {
60818
- width: sectionproperties.innerwidthheightresp + 'px',
60819
- height: sectionproperties.innerwidthheightresp + 'px'
60839
+ width: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.innerwidthheightresp + '%' : sectionproperties.innerwidthheightresp + 'px',
60840
+ height: sectionproperties.percentagepixel == 'Percentage' ? sectionproperties.innerwidthheightresp + '%' : sectionproperties.innerwidthheightresp + 'px'
60820
60841
  }
60821
60842
  }),
60822
60843
  cardContainer: glamor.css({
@@ -60830,12 +60851,18 @@
60830
60851
  }
60831
60852
  }),
60832
60853
  btnstyles: glamor.css({
60854
+ width: sectionproperties.generalbtn_width + 'px',
60855
+ height: sectionproperties.generalbtn_height + 'px',
60833
60856
  fontSize: sectionproperties.generalbtn_fontsize + 'px',
60834
60857
  color: sectionproperties.generalbtn_textColor,
60835
60858
  fontWeight: sectionproperties.generalbtn_fontweight,
60836
- textDecoration: 'underline',
60859
+ textDecoration: sectionproperties.textdecoration == 'None' ? 'none' : 'underline',
60860
+ backgroundColor: sectionproperties.generalbtn_bgColor,
60861
+ borderRadius: sectionproperties.generalbtnborderradius,
60837
60862
  ':hover': {
60838
- color: sectionproperties.generalbtn_textColoronhover
60863
+ color: sectionproperties.generalbtn_textColoronhover,
60864
+ backgroundColor: sectionproperties.generalbtn_bgColoronhover,
60865
+ transition: '.3s'
60839
60866
  }
60840
60867
  }),
60841
60868
  outercontainer: glamor.css({
@@ -60885,25 +60912,8 @@
60885
60912
  left: 0
60886
60913
  }
60887
60914
  })), /*#__PURE__*/React__default["default"].createElement("div", {
60888
- "class": "row ml-0 mr-0 w-100 d-flex justify-content-center pl-md-3 pr-md-3 px-2015-3",
60889
- style: {
60890
- marginTop: sectionproperties.marginTop + 'px',
60891
- marginBottom: sectionproperties.marginBottom + 'px',
60892
- paddingLeft: sectionproperties.paddingLeft + 'px',
60893
- paddingRight: sectionproperties.paddingRight + 'px',
60894
- paddingTop: sectionproperties.paddingTop + 'px',
60895
- paddingBottom: sectionproperties.paddingBottom + 'px',
60896
- background: sectionproperties.backgroundColortransparent == 'Transparent' ? 'transparent' : sectionproperties.backgroundColor,
60897
- borderBottomLeftRadius: sectionproperties.borderBottomLeftRadius + 'px',
60898
- borderBottomRightRadius: sectionproperties.borderBottomRightRadius + 'px',
60899
- borderTopLeftRadius: sectionproperties.borderTopLeftRadius + 'px',
60900
- borderTopRightRadius: sectionproperties.borderTopRightRadius + 'px',
60901
- border: sectionproperties.borderType == 'All' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60902
- borderTop: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60903
- borderBottom: sectionproperties.borderType == 'Vertical' ? sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor : '',
60904
- borderLeftWidth: 0,
60905
- borderRightWidth: 0
60906
- }
60915
+ "class": sectionStyles.containerrrr + ' row ml-0 mr-0 w-100 d-flex justify-content-center pl-md-3 pr-md-3 px-2015-3 ',
60916
+ style: {}
60907
60917
  }, sectionproperties.sectiontitleshow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
60908
60918
  "class": "col-lg-12 allcentered p-0",
60909
60919
  style: {
@@ -60973,7 +60983,7 @@
60973
60983
  // if (cardinfoitem.iscardclickable == 'Yes') {
60974
60984
  // window.open(cardinfoitem.btnlink, '_blank');
60975
60985
  // }
60976
- if (cardinfoitem.btntype == 'Web Product Link') {
60986
+ if (cardinfoitem.btntype == 'Web Product Link' || cardinfoitem.btntype == 'App/Web Page') {
60977
60987
  routingcountext(cardinfoitem.btnlink, false, '');
60978
60988
  } else if (cardinfoitem.iscardclickable == 'Yes' && cardinfoitem.clickabletabtype == 'Same Tab' && cardinfoitem.btntype != 'Web Product Link') {
60979
60989
  // window.open(cardinfoitem.btnlink, '_target');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabexseriescomponents",
3
- "version": "0.0.622",
3
+ "version": "0.0.623",
4
4
  "description": "your description",
5
5
  "main": "dist/index.cjs.js",
6
6
  "scripts": {