@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/README.md
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -15964,6 +15964,18 @@ var getSerializers$1 = function getSerializers(client) {
|
|
|
15964
15964
|
null,
|
|
15965
15965
|
props.children
|
|
15966
15966
|
);
|
|
15967
|
+
},
|
|
15968
|
+
link: function link(props) {
|
|
15969
|
+
var children = props.children,
|
|
15970
|
+
_props$mark = props.mark,
|
|
15971
|
+
href = _props$mark.href,
|
|
15972
|
+
blank = _props$mark.blank;
|
|
15973
|
+
|
|
15974
|
+
return React__default.createElement(
|
|
15975
|
+
'a',
|
|
15976
|
+
{ href: href, target: blank ? '_blank' : '_self' },
|
|
15977
|
+
children
|
|
15978
|
+
);
|
|
15967
15979
|
}
|
|
15968
15980
|
}
|
|
15969
15981
|
};
|