@mjhls/mjh-framework 1.0.54 → 1.0.55
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 +16 -0
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10097,6 +10097,22 @@ var getSerializers$1 = function getSerializers(client) {
|
|
|
10097
10097
|
|
|
10098
10098
|
return React__default.createElement(Media$1, { uploadDoc: upload_doc, poster: poster, blank: blank, client: client, caption: caption });
|
|
10099
10099
|
}
|
|
10100
|
+
},
|
|
10101
|
+
marks: {
|
|
10102
|
+
superscript: function superscript(props) {
|
|
10103
|
+
return React__default.createElement(
|
|
10104
|
+
'sup',
|
|
10105
|
+
null,
|
|
10106
|
+
props.children
|
|
10107
|
+
);
|
|
10108
|
+
},
|
|
10109
|
+
subscript: function subscript(props) {
|
|
10110
|
+
return React__default.createElement(
|
|
10111
|
+
'sub',
|
|
10112
|
+
null,
|
|
10113
|
+
props.children
|
|
10114
|
+
);
|
|
10115
|
+
}
|
|
10100
10116
|
}
|
|
10101
10117
|
};
|
|
10102
10118
|
};
|