Doc: update

This commit is contained in:
wanglin2
2023-09-18 16:53:33 +08:00
parent 0ab495a161
commit 76ddecee50
9 changed files with 39 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "simple-mind-map",
"version": "0.7.1-fix.1",
"version": "0.7.1-fix.2",
"description": "一个简单的web在线思维导图",
"authors": [
{

View File

@@ -1,5 +1,15 @@
# Changelog
## 0.7.1-fix.2
Fix: 1.Fix the issue of plugin registration method chain call reporting errors.
New:
> 1.Add a configuration option to adapt to the canvas size when the mind map is first loaded.
>
> 2.Add a command to automatically generate dts declaration files.
## 0.7.1-fix.1
Fix: Fixed the issue of dragging nodes without excluding the child nodes of the dragged nodes.

View File

@@ -1,6 +1,13 @@
<template>
<div>
<h1>Changelog</h1>
<h2>0.7.1-fix.2</h2>
<p>Fix: 1.Fix the issue of plugin registration method chain call reporting errors.</p>
<p>New:</p>
<blockquote>
<p>1.Add a configuration option to adapt to the canvas size when the mind map is first loaded.</p>
<p>2.Add a command to automatically generate dts declaration files.</p>
</blockquote>
<h2>0.7.1-fix.1</h2>
<p>Fix: Fixed the issue of dragging nodes without excluding the child nodes of the dragged nodes.</p>
<h2>0.7.1</h2>

View File

@@ -89,7 +89,7 @@ const mindMap = new MindMap({
| selectTextOnEnterEditTextv0.7.0+ | Boolean | true | Is the text selected by default when double-clicking a node to enter node text editing? By default, it will only be selected when creating a new node | |
| deleteNodeActivev0.7.1+ | Boolean | true | Enable the function of automatically activating adjacent nodes or parent nodes after deleting nodes | |
| autoMoveWhenMouseInEdgeOnDragv0.7.1+ | Boolean | true | Whether to enable automatic canvas movement when the mouse moves to the edge of the canvas while dragging nodes | |
| fitv0.7.2+ | Boolean | false | Is the first rendering scaled to fit the canvas size | |
| fitv0.7.1-fix.2+ | Boolean | false | Is the first rendering scaled to fit the canvas size | |
### Data structure

View File

@@ -484,7 +484,7 @@
<td></td>
</tr>
<tr>
<td>fitv0.7.2+</td>
<td>fitv0.7.1-fix.2+</td>
<td>Boolean</td>
<td>false</td>
<td>Is the first rendering scaled to fit the canvas size</td>

View File

@@ -1,5 +1,15 @@
# Changelog
## 0.7.1-fix.2
修复1.修复插件注册方法链式调用报错的问题。
新增:
> 1.新增思维导图初次加载时适应画布大小的配置选项。
>
> 2.新增自动生成dts声明文件的命令。
## 0.7.1-fix.1
修复:修复拖拽节点时没有排除被拖拽节点的下级节点的问题。

View File

@@ -1,6 +1,13 @@
<template>
<div>
<h1>Changelog</h1>
<h2>0.7.1-fix.2</h2>
<p>修复1.修复插件注册方法链式调用报错的问题</p>
<p>新增</p>
<blockquote>
<p>1.新增思维导图初次加载时适应画布大小的配置选项</p>
<p>2.新增自动生成dts声明文件的命令</p>
</blockquote>
<h2>0.7.1-fix.1</h2>
<p>修复修复拖拽节点时没有排除被拖拽节点的下级节点的问题</p>
<h2>0.7.1</h2>

View File

@@ -89,7 +89,7 @@ const mindMap = new MindMap({
| selectTextOnEnterEditTextv0.7.0+ | Boolean | true | 双击节点进入节点文本编辑时是否默认选中文本,默认只在创建新节点时会选中 | |
| deleteNodeActivev0.7.1+ | Boolean | true | 是否开启删除节点后自动激活节点相邻节点或父节点的功能 | |
| autoMoveWhenMouseInEdgeOnDragv0.7.1+ | Boolean | true | 拖拽节点时鼠标移动到画布边缘是否开启画布自动移动 | |
| fitv0.7.2+ | Boolean | false | 首次渲染时是否缩放至适应画布大小 | |
| fitv0.7.1-fix.2+ | Boolean | false | 首次渲染时是否缩放至适应画布大小 | |
### 数据结构

View File

@@ -484,7 +484,7 @@
<td></td>
</tr>
<tr>
<td>fitv0.7.2+</td>
<td>fitv0.7.1-fix.2+</td>
<td>Boolean</td>
<td>false</td>
<td>首次渲染时是否缩放至适应画布大小</td>