@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 CHANGED
@@ -1,4 +1,4 @@
1
- # mjh-framework v. 1.0.54
1
+ # mjh-framework v. 1.0.55
2
2
 
3
3
  > Foundation Framework
4
4
 
package/dist/index.es.js CHANGED
@@ -10090,6 +10090,22 @@ var getSerializers$1 = function getSerializers(client) {
10090
10090
 
10091
10091
  return React__default.createElement(Media$1, { uploadDoc: upload_doc, poster: poster, blank: blank, client: client, caption: caption });
10092
10092
  }
10093
+ },
10094
+ marks: {
10095
+ superscript: function superscript(props) {
10096
+ return React__default.createElement(
10097
+ 'sup',
10098
+ null,
10099
+ props.children
10100
+ );
10101
+ },
10102
+ subscript: function subscript(props) {
10103
+ return React__default.createElement(
10104
+ 'sub',
10105
+ null,
10106
+ props.children
10107
+ );
10108
+ }
10093
10109
  }
10094
10110
  };
10095
10111
  };