@uiw/react-md-editor 3.21.0 → 3.21.1

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.
@@ -54,7 +54,6 @@ export default function Textarea(props) {
54
54
  }, []);
55
55
  var onKeyDown = e => {
56
56
  handleKeyDown(e, tabSize, defaultTabEnable);
57
- console.log('otherStore:', otherStore);
58
57
  shortcuts(e, [...(commands || []), ...(extraCommands || [])], executeRef.current, dispatch, statesRef.current);
59
58
  };
60
59
  useEffect(() => {
@@ -58,7 +58,6 @@ function Textarea(props) {
58
58
  }, []);
59
59
  var onKeyDown = function onKeyDown(e) {
60
60
  (0, _handleKeyDown["default"])(e, tabSize, defaultTabEnable);
61
- console.log('otherStore:', otherStore);
62
61
  (0, _shortcuts["default"])(e, [].concat((0, _toConsumableArray2["default"])(commands || []), (0, _toConsumableArray2["default"])(extraCommands || [])), executeRef.current, dispatch, statesRef.current);
63
62
  };
64
63
  (0, _react.useEffect)(function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uiw/react-md-editor",
3
- "version": "3.21.0",
3
+ "version": "3.21.1",
4
4
  "description": "A markdown editor with preview, implemented with React.js and TypeScript.",
5
5
  "homepage": "https://uiwjs.github.io/react-md-editor/",
6
6
  "author": "kenny wang <wowohoo@qq.com>",
@@ -41,7 +41,6 @@ export default function Textarea(props: TextAreaProps) {
41
41
 
42
42
  const onKeyDown = (e: KeyboardEvent | React.KeyboardEvent<HTMLTextAreaElement>) => {
43
43
  handleKeyDown(e, tabSize, defaultTabEnable);
44
- console.log('otherStore:', otherStore);
45
44
  shortcuts(e, [...(commands || []), ...(extraCommands || [])], executeRef.current, dispatch, statesRef.current);
46
45
  };
47
46
  useEffect(() => {