@oliasoft-open-source/react-ui-library 3.11.0-beta-19 → 3.11.0

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.js CHANGED
@@ -60762,10 +60762,11 @@ Tabs.propTypes = propTypes$1.exports.oneOfType([
60762
60762
  propTypes$1.exports.shape(TabsShape),
60763
60763
  propTypes$1.exports.shape(TabsShapeDeprecated)
60764
60764
  ]).isRequired;
60765
- const TextLink = ({ children, href, target, testId }) => {
60765
+ const TextLink = ({ children, href, target, onClick, testId }) => {
60766
60766
  return /* @__PURE__ */ jsxRuntime.exports.jsx("a", {
60767
60767
  href,
60768
60768
  target,
60769
+ onClick,
60769
60770
  "data-testid": testId,
60770
60771
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(Text, {
60771
60772
  link: true,
@@ -60776,12 +60777,14 @@ const TextLink = ({ children, href, target, testId }) => {
60776
60777
  TextLink.defaultProps = {
60777
60778
  href: null,
60778
60779
  target: null,
60779
- testId: void 0
60780
+ testId: void 0,
60781
+ onClick: void 0
60780
60782
  };
60781
60783
  TextLink.propTypes = {
60782
60784
  href: propTypes$1.exports.string,
60783
60785
  target: propTypes$1.exports.string,
60784
- testId: propTypes$1.exports.string
60786
+ testId: propTypes$1.exports.string,
60787
+ onClick: propTypes$1.exports.func
60785
60788
  };
60786
60789
  const inputInTable = "_inputInTable_16zvb_341";
60787
60790
  const inputHover = "_inputHover_16zvb_350";