Releases: imzbf/md-editor-rt
Releases · imzbf/md-editor-rt
v4.13.0
新增特性
- 🌟 以英文翻译为基础,合并不完整的本地化配置。
- 🌟 编辑模式下提供仅预览模式。
- 🌟 调用内部操作的触发器:
execCommand
。 - 🌟 转换图片链接的接口:
transformImgUrl
。 - 🌟 调整内置的搜索面板样式。
修复问题
- 🐞 在Next.js中,获取默认的
editorId
不一致(#144)。
New Features
- 🌟 Merging the missing language settings based on English.
- 🌟 Preview mode only in edit state.
- 🌟 Invoke triggers for internal operations:
execCommand
. - 🌟 Api for converting image links:
transformImgUrl
. - 🌟 Adjust search panel style.
Fixed Bugs
- 🐞 In Next.js, obtaining inconsistent default editorId(#144).
v4.12.4
v4.12.3
修复问题
- 🐞 在
nextjs
中,组件Dropdown
提示'Each child in a list should have a unique "key" prop'(#139)。 - 🐞 单行中已存在
$
时,再输入未正确提示。
Fixed Bugs
- 🐞
Dropdown
throws an error stating "Each child in a list should have a unique 'key' prop"(#139). - 🐞 In a line where sign $ already exists, further input will not trigger suggestions.
v4.12.2
修复问题
- 🐞 UMD模块在生产环境报错。
- 🐞 两位数及以上的列表序号显示不完全,现在默认显示三位数,超过请自行调整样式。
Fixed Bugs
- 🐞 In production environments, errors occur with UMD module.
- 🐞 For two-digit and above list item numbers that are not fully displayed, currently they default to showing three-digit numbers; for longer numbers, please manually adjust the style accordingly.
v4.12.1
v4.12.0
新增特性
- 🌟 为
editorId
设置不同的默认值(现在存在多个编辑器不需要手动设置该属性,但是使用目录组件时仍然需要相同)。 - 🌟 暴露方法domEventHandlers来监听全部的dom事件。
- 🌟 上传图片事件
onUploadImg
现在支持回显alt
和title
属性了,使用示例。
重构
- ⭐️ 切换预览状态时,从页面上移除dom。
- ⭐️ 将组件
Modal
渲染到document.body
中去。
修复问题
- 🐞 未允许嵌入视频代码。
New Features
- 🌟 Generate different default values for attribute
editorId
(Now there exist multiple editors that do not require manual setting of this property, however, when using componentMdCatalog
, such configuration is still necessary.). - 🌟 Expose domEventHandlers for adding handlers for all DOM events.
- 🌟 The
onUploadImg
event for uploading images now supports displaying the alt and title attributes after upload. Refer to the example.
Refactor
- ⭐️ Remove dom when switching preview state.
- ⭐️ Render component
Modal
todocument.body
.
Fixed Bugs
- 🐞 Not allowed to embed video code.
v4.11.3
v4.11.2
v4.11.1
v4.11.0
新增特性
- 🌟 暴露方法rerender来重新渲染内容。
- 🌟 暴露方法getSelectedText来获取选中的内容。
- 🌟 暴露方法resetHistory来清空输入历史。
重构
- ⭐️ 恢复
highlight.js
默认的版本为11.8.0
。 - ⭐️ 使用
<div>
标签替代<aritcle>
标签。
修复问题
- 🐞 插入内容是将
select
设置为false
还是会自动选中内容。
New Features
- 🌟 Expose rerender for re rendering content.
- 🌟 Expose getSelectedText for getting selected text.
- 🌟 expose resetHistory for clearing current history.
Refactor
- ⭐️ Rollback highlight.js version to 11.8.0.
- ⭐️ Replace
<article>
tag with<div>
tag.
Fixed Bugs
- 🐞 Setting
select
tofalse
when inserting content does not take effect.