overtype 2.3.8 → 2.3.9

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * OverType v2.3.8
2
+ * OverType v2.3.9
3
3
  * A lightweight markdown editor library with perfect WYSIWYG alignment
4
4
  * @license MIT
5
5
  * @author David Miranda
@@ -98,6 +98,7 @@ if (typeof window !== "undefined" && typeof window.document !== "undefined") {
98
98
  // Extract exports BEFORE reassigning OverType (var OverType is window.OverType)
99
99
  window.toolbarButtons = OverType.toolbarButtons;
100
100
  window.defaultToolbarButtons = OverType.defaultToolbarButtons;
101
+ window.markdownActions = OverType.markdownActions;
101
102
  window.OverType = OverType.default ? OverType.default : OverType;
102
103
  }
103
104
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "overtype",
3
- "version": "2.3.8",
3
+ "version": "2.3.9",
4
4
  "description": "A lightweight markdown editor library with perfect WYSIWYG alignment using an invisible textarea overlay",
5
5
  "main": "dist/overtype.cjs",
6
6
  "module": "dist/overtype.esm.js",
package/src/overtype.js CHANGED
@@ -1895,4 +1895,3 @@ export { toolbarButtons, defaultToolbarButtons } from './toolbar-buttons.js';
1895
1895
 
1896
1896
  // Re-export markdown-actions. Useful for custom toolbar implementations
1897
1897
  export * as markdownActions from 'markdown-actions';
1898
-