@mjhls/mjh-framework 1.0.76 → 1.0.77
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/README.md +1 -1
- package/dist/index.es.js +12 -0
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15971,6 +15971,18 @@ var getSerializers$1 = function getSerializers(client) {
|
|
|
15971
15971
|
null,
|
|
15972
15972
|
props.children
|
|
15973
15973
|
);
|
|
15974
|
+
},
|
|
15975
|
+
link: function link(props) {
|
|
15976
|
+
var children = props.children,
|
|
15977
|
+
_props$mark = props.mark,
|
|
15978
|
+
href = _props$mark.href,
|
|
15979
|
+
blank = _props$mark.blank;
|
|
15980
|
+
|
|
15981
|
+
return React__default.createElement(
|
|
15982
|
+
'a',
|
|
15983
|
+
{ href: href, target: blank ? '_blank' : '_self' },
|
|
15984
|
+
children
|
|
15985
|
+
);
|
|
15974
15986
|
}
|
|
15975
15987
|
}
|
|
15976
15988
|
};
|