mirror of
https://github.com/wanglin2/mind-map.git
synced 2026-02-17 14:04:47 +08:00
Doc: update
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "simple-mind-map",
|
||||
"version": "0.7.1-fix.1",
|
||||
"version": "0.7.1-fix.2",
|
||||
"description": "一个简单的web在线思维导图",
|
||||
"authors": [
|
||||
{
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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 | |
|
||||
| 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 | |
|
||||
| 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
|
||||
|
||||
|
||||
@@ -484,7 +484,7 @@
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>fit(v0.7.2+)</td>
|
||||
<td>fit(v0.7.1-fix.2+)</td>
|
||||
<td>Boolean</td>
|
||||
<td>false</td>
|
||||
<td>Is the first rendering scaled to fit the canvas size</td>
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# Changelog
|
||||
|
||||
## 0.7.1-fix.2
|
||||
|
||||
修复:1.修复插件注册方法链式调用报错的问题。
|
||||
|
||||
新增:
|
||||
|
||||
> 1.新增思维导图初次加载时适应画布大小的配置选项。
|
||||
>
|
||||
> 2.新增自动生成dts声明文件的命令。
|
||||
|
||||
## 0.7.1-fix.1
|
||||
|
||||
修复:修复拖拽节点时没有排除被拖拽节点的下级节点的问题。
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -89,7 +89,7 @@ const mindMap = new MindMap({
|
||||
| selectTextOnEnterEditText(v0.7.0+) | Boolean | true | 双击节点进入节点文本编辑时是否默认选中文本,默认只在创建新节点时会选中 | |
|
||||
| deleteNodeActive(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>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>fit(v0.7.2+)</td>
|
||||
<td>fit(v0.7.1-fix.2+)</td>
|
||||
<td>Boolean</td>
|
||||
<td>false</td>
|
||||
<td>首次渲染时是否缩放至适应画布大小</td>
|
||||
|
||||
Reference in New Issue
Block a user