Doc: update
This commit is contained in:
parent
0ab495a161
commit
76ddecee50
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "simple-mind-map",
|
"name": "simple-mind-map",
|
||||||
"version": "0.7.1-fix.1",
|
"version": "0.7.1-fix.2",
|
||||||
"description": "一个简单的web在线思维导图",
|
"description": "一个简单的web在线思维导图",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# 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
|
## 0.7.1-fix.1
|
||||||
|
|
||||||
Fix: Fixed the issue of dragging nodes without excluding the child nodes of the dragged nodes.
|
Fix: Fixed the issue of dragging nodes without excluding the child nodes of the dragged nodes.
|
||||||
|
|||||||
@ -1,6 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<h1>Changelog</h1>
|
<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>
|
<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>
|
<p>Fix: Fixed the issue of dragging nodes without excluding the child nodes of the dragged nodes.</p>
|
||||||
<h2>0.7.1</h2>
|
<h2>0.7.1</h2>
|
||||||
|
|||||||
@ -89,7 +89,7 @@ const mindMap = new MindMap({
|
|||||||
| selectTextOnEnterEditText(v0.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 | |
|
| selectTextOnEnterEditText(v0.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 | |
|
||||||
| deleteNodeActive(v0.7.1+) | Boolean | true | Enable the function of automatically activating adjacent nodes or parent nodes after deleting nodes | |
|
| deleteNodeActive(v0.7.1+) | Boolean | true | Enable the function of automatically activating adjacent nodes or parent nodes after deleting nodes | |
|
||||||
| autoMoveWhenMouseInEdgeOnDrag(v0.7.1+) | Boolean | true | Whether to enable automatic canvas movement when the mouse moves to the edge of the canvas while dragging nodes | |
|
| autoMoveWhenMouseInEdgeOnDrag(v0.7.1+) | Boolean | true | Whether to enable automatic canvas movement when the mouse moves to the edge of the canvas while dragging nodes | |
|
||||||
| fit(v0.7.2+) | Boolean | false | Is the first rendering scaled to fit the canvas size | |
|
| fit(v0.7.1-fix.2+) | Boolean | false | Is the first rendering scaled to fit the canvas size | |
|
||||||
|
|
||||||
### Data structure
|
### Data structure
|
||||||
|
|
||||||
|
|||||||
@ -484,7 +484,7 @@
|
|||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>fit(v0.7.2+)</td>
|
<td>fit(v0.7.1-fix.2+)</td>
|
||||||
<td>Boolean</td>
|
<td>Boolean</td>
|
||||||
<td>false</td>
|
<td>false</td>
|
||||||
<td>Is the first rendering scaled to fit the canvas size</td>
|
<td>Is the first rendering scaled to fit the canvas size</td>
|
||||||
|
|||||||
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.7.1-fix.2
|
||||||
|
|
||||||
|
修复:1.修复插件注册方法链式调用报错的问题。
|
||||||
|
|
||||||
|
新增:
|
||||||
|
|
||||||
|
> 1.新增思维导图初次加载时适应画布大小的配置选项。
|
||||||
|
>
|
||||||
|
> 2.新增自动生成dts声明文件的命令。
|
||||||
|
|
||||||
## 0.7.1-fix.1
|
## 0.7.1-fix.1
|
||||||
|
|
||||||
修复:修复拖拽节点时没有排除被拖拽节点的下级节点的问题。
|
修复:修复拖拽节点时没有排除被拖拽节点的下级节点的问题。
|
||||||
|
|||||||
@ -1,6 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<h1>Changelog</h1>
|
<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>
|
<h2>0.7.1-fix.1</h2>
|
||||||
<p>修复:修复拖拽节点时没有排除被拖拽节点的下级节点的问题。</p>
|
<p>修复:修复拖拽节点时没有排除被拖拽节点的下级节点的问题。</p>
|
||||||
<h2>0.7.1</h2>
|
<h2>0.7.1</h2>
|
||||||
|
|||||||
@ -89,7 +89,7 @@ const mindMap = new MindMap({
|
|||||||
| selectTextOnEnterEditText(v0.7.0+) | Boolean | true | 双击节点进入节点文本编辑时是否默认选中文本,默认只在创建新节点时会选中 | |
|
| selectTextOnEnterEditText(v0.7.0+) | Boolean | true | 双击节点进入节点文本编辑时是否默认选中文本,默认只在创建新节点时会选中 | |
|
||||||
| deleteNodeActive(v0.7.1+) | Boolean | true | 是否开启删除节点后自动激活节点相邻节点或父节点的功能 | |
|
| deleteNodeActive(v0.7.1+) | Boolean | true | 是否开启删除节点后自动激活节点相邻节点或父节点的功能 | |
|
||||||
| autoMoveWhenMouseInEdgeOnDrag(v0.7.1+) | Boolean | true | 拖拽节点时鼠标移动到画布边缘是否开启画布自动移动 | |
|
| autoMoveWhenMouseInEdgeOnDrag(v0.7.1+) | Boolean | true | 拖拽节点时鼠标移动到画布边缘是否开启画布自动移动 | |
|
||||||
| fit(v0.7.2+) | Boolean | false | 首次渲染时是否缩放至适应画布大小 | |
|
| fit(v0.7.1-fix.2+) | Boolean | false | 首次渲染时是否缩放至适应画布大小 | |
|
||||||
|
|
||||||
### 数据结构
|
### 数据结构
|
||||||
|
|
||||||
|
|||||||
@ -484,7 +484,7 @@
|
|||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>fit(v0.7.2+)</td>
|
<td>fit(v0.7.1-fix.2+)</td>
|
||||||
<td>Boolean</td>
|
<td>Boolean</td>
|
||||||
<td>false</td>
|
<td>false</td>
|
||||||
<td>首次渲染时是否缩放至适应画布大小</td>
|
<td>首次渲染时是否缩放至适应画布大小</td>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user