@uiw/react-md-editor 4.0.5 → 4.0.7

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.
Files changed (125) hide show
  1. package/README.md +57 -3
  2. package/dist/mdeditor.css +107 -107
  3. package/dist/mdeditor.js +7866 -3903
  4. package/dist/mdeditor.min.css +1 -1
  5. package/dist/mdeditor.min.js +1 -1
  6. package/esm/Context.d.ts +3 -1
  7. package/esm/Editor.js +10 -6
  8. package/esm/Editor.nohighlight.js +9 -5
  9. package/esm/Types.d.ts +6 -2
  10. package/esm/commands/bold.d.ts +1 -1
  11. package/esm/commands/bold.js +1 -1
  12. package/esm/commands/code.d.ts +1 -1
  13. package/esm/commands/code.js +1 -1
  14. package/esm/commands/comment.d.ts +1 -1
  15. package/esm/commands/comment.js +1 -1
  16. package/esm/commands/divider.d.ts +1 -1
  17. package/esm/commands/fullscreen.d.ts +1 -1
  18. package/esm/commands/group.d.ts +1 -1
  19. package/esm/commands/help.d.ts +1 -1
  20. package/esm/commands/hr.d.ts +1 -1
  21. package/esm/commands/hr.js +1 -1
  22. package/esm/commands/image.d.ts +1 -1
  23. package/esm/commands/image.js +1 -1
  24. package/esm/commands/index.cn.js +24 -24
  25. package/esm/commands/index.d.ts +1 -1
  26. package/esm/commands/index.js +25 -25
  27. package/esm/commands/issue.d.ts +1 -1
  28. package/esm/commands/issue.js +1 -1
  29. package/esm/commands/italic.d.ts +1 -1
  30. package/esm/commands/italic.js +1 -1
  31. package/esm/commands/link.d.ts +1 -1
  32. package/esm/commands/link.js +1 -1
  33. package/esm/commands/list.d.ts +1 -1
  34. package/esm/commands/list.js +1 -1
  35. package/esm/commands/preview.d.ts +1 -1
  36. package/esm/commands/quote.d.ts +1 -1
  37. package/esm/commands/quote.js +1 -1
  38. package/esm/commands/strikeThrough.js +1 -1
  39. package/esm/commands/table.js +1 -1
  40. package/esm/commands/title.js +2 -2
  41. package/esm/commands/title1.js +1 -1
  42. package/esm/commands/title2.js +1 -1
  43. package/esm/commands/title3.js +1 -1
  44. package/esm/commands/title4.js +1 -1
  45. package/esm/commands/title5.js +1 -1
  46. package/esm/commands/title6.js +1 -1
  47. package/esm/components/TextArea/Markdown.js +1 -1
  48. package/esm/components/TextArea/Textarea.js +22 -5
  49. package/esm/components/TextArea/handleKeyDown.js +3 -4
  50. package/esm/components/TextArea/index.d.ts +1 -1
  51. package/esm/components/TextArea/index.js +5 -5
  52. package/esm/components/TextArea/index.nohighlight.d.ts +1 -1
  53. package/esm/components/TextArea/index.nohighlight.js +4 -4
  54. package/esm/components/TextArea/shortcuts.d.ts +1 -1
  55. package/esm/components/Toolbar/Child.js +2 -2
  56. package/esm/components/Toolbar/index.d.ts +1 -1
  57. package/esm/components/Toolbar/index.js +2 -2
  58. package/esm/index.d.ts +2 -2
  59. package/esm/index.js +10 -10
  60. package/esm/index.nohighlight.d.ts +2 -2
  61. package/esm/index.nohighlight.js +8 -8
  62. package/esm/utils/markdownUtils.d.ts +1 -2
  63. package/lib/Context.d.ts +3 -1
  64. package/lib/Editor.js +12 -5
  65. package/lib/Editor.nohighlight.js +11 -4
  66. package/lib/Types.d.ts +6 -2
  67. package/lib/commands/bold.d.ts +1 -1
  68. package/lib/commands/code.d.ts +1 -1
  69. package/lib/commands/comment.d.ts +1 -1
  70. package/lib/commands/divider.d.ts +1 -1
  71. package/lib/commands/fullscreen.d.ts +1 -1
  72. package/lib/commands/group.d.ts +1 -1
  73. package/lib/commands/help.d.ts +1 -1
  74. package/lib/commands/hr.d.ts +1 -1
  75. package/lib/commands/image.d.ts +1 -1
  76. package/lib/commands/index.d.ts +1 -1
  77. package/lib/commands/issue.d.ts +1 -1
  78. package/lib/commands/italic.d.ts +1 -1
  79. package/lib/commands/link.d.ts +1 -1
  80. package/lib/commands/list.d.ts +1 -1
  81. package/lib/commands/preview.d.ts +1 -1
  82. package/lib/commands/quote.d.ts +1 -1
  83. package/lib/components/TextArea/Textarea.js +19 -2
  84. package/lib/components/TextArea/handleKeyDown.js +1 -1
  85. package/lib/components/TextArea/index.d.ts +1 -1
  86. package/lib/components/TextArea/index.js +1 -1
  87. package/lib/components/TextArea/index.nohighlight.d.ts +1 -1
  88. package/lib/components/TextArea/index.nohighlight.js +1 -1
  89. package/lib/components/TextArea/shortcuts.d.ts +1 -1
  90. package/lib/components/Toolbar/index.d.ts +1 -1
  91. package/lib/index.d.ts +2 -2
  92. package/lib/index.js +1 -1
  93. package/lib/index.nohighlight.d.ts +2 -2
  94. package/lib/index.nohighlight.js +1 -1
  95. package/lib/utils/markdownUtils.d.ts +1 -2
  96. package/package.json +1 -1
  97. package/src/Context.tsx +2 -1
  98. package/src/Editor.nohighlight.tsx +5 -3
  99. package/src/Editor.tsx +6 -4
  100. package/src/Types.ts +6 -2
  101. package/src/commands/bold.tsx +1 -1
  102. package/src/commands/code.tsx +1 -1
  103. package/src/commands/comment.tsx +1 -1
  104. package/src/commands/divider.tsx +1 -1
  105. package/src/commands/fullscreen.tsx +2 -2
  106. package/src/commands/group.tsx +1 -1
  107. package/src/commands/help.tsx +1 -1
  108. package/src/commands/hr.tsx +1 -1
  109. package/src/commands/image.tsx +1 -1
  110. package/src/commands/index.ts +1 -1
  111. package/src/commands/issue.tsx +1 -1
  112. package/src/commands/italic.tsx +1 -1
  113. package/src/commands/link.tsx +1 -1
  114. package/src/commands/list.tsx +1 -1
  115. package/src/commands/preview.tsx +2 -2
  116. package/src/commands/quote.tsx +1 -1
  117. package/src/components/TextArea/Textarea.tsx +19 -1
  118. package/src/components/TextArea/handleKeyDown.tsx +1 -1
  119. package/src/components/TextArea/index.nohighlight.tsx +1 -1
  120. package/src/components/TextArea/index.tsx +1 -1
  121. package/src/components/TextArea/shortcuts.ts +1 -1
  122. package/src/components/Toolbar/index.tsx +1 -1
  123. package/src/index.nohighlight.tsx +2 -2
  124. package/src/index.tsx +2 -2
  125. package/src/utils/markdownUtils.ts +1 -2

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.