@eclass/ui-kit 1.53.0 → 1.53.1

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.
@@ -1769,15 +1769,17 @@ function BtnLink({
1769
1769
  onClick,
1770
1770
  role = "link",
1771
1771
  tabIndex,
1772
+ target = "_blank",
1772
1773
  textDecorationLine = true
1773
1774
  }) {
1774
1775
  const typeButton = {
1775
1776
  button: {
1776
- onClick
1777
+ onClick,
1778
+ target
1777
1779
  },
1778
1780
  a: {
1779
1781
  href,
1780
- target: "_blank"
1782
+ target
1781
1783
  }
1782
1784
  };
1783
1785
  return /* @__PURE__ */ jsx(Box, {
@@ -6127,6 +6129,7 @@ const EventsGroup = ({
6127
6129
  children: textSeeMore
6128
6130
  }), " ", /* @__PURE__ */ jsx(BtnLink, {
6129
6131
  onClick: redirect,
6132
+ target: "_self",
6130
6133
  children: textLinkMore
6131
6134
  })]
6132
6135
  })]