@oliasoft-open-source/react-ui-library 3.10.3 → 3.10.4
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 +6 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -60851,10 +60851,11 @@ Tabs.propTypes = propTypes$1.exports.oneOfType([
|
|
|
60851
60851
|
propTypes$1.exports.shape(TabsShape),
|
|
60852
60852
|
propTypes$1.exports.shape(TabsShapeDeprecated)
|
|
60853
60853
|
]).isRequired;
|
|
60854
|
-
const TextLink = ({ children, href, target, testId }) => {
|
|
60854
|
+
const TextLink = ({ children, href, target, onClick, testId }) => {
|
|
60855
60855
|
return /* @__PURE__ */ jsxRuntime.exports.jsx("a", {
|
|
60856
60856
|
href,
|
|
60857
60857
|
target,
|
|
60858
|
+
onClick,
|
|
60858
60859
|
"data-testid": testId,
|
|
60859
60860
|
children: /* @__PURE__ */ jsxRuntime.exports.jsx(Text, {
|
|
60860
60861
|
link: true,
|
|
@@ -60865,12 +60866,14 @@ const TextLink = ({ children, href, target, testId }) => {
|
|
|
60865
60866
|
TextLink.defaultProps = {
|
|
60866
60867
|
href: null,
|
|
60867
60868
|
target: null,
|
|
60868
|
-
testId: void 0
|
|
60869
|
+
testId: void 0,
|
|
60870
|
+
onClick: void 0
|
|
60869
60871
|
};
|
|
60870
60872
|
TextLink.propTypes = {
|
|
60871
60873
|
href: propTypes$1.exports.string,
|
|
60872
60874
|
target: propTypes$1.exports.string,
|
|
60873
|
-
testId: propTypes$1.exports.string
|
|
60875
|
+
testId: propTypes$1.exports.string,
|
|
60876
|
+
onClick: propTypes$1.exports.func
|
|
60874
60877
|
};
|
|
60875
60878
|
const inputInTable = "_inputInTable_yb5q9_335";
|
|
60876
60879
|
const inputHover = "_inputHover_yb5q9_341";
|