Skip to content

Commit a2ccede

Browse files
committed
build: v4.1.1
1 parent 7535cb2 commit a2ccede

File tree

10 files changed

+2
-11
lines changed

10 files changed

+2
-11
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mind-elixir",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"type": "module",
55
"description": "Mind elixir is a free open source mind map core.",
66
"keywords": [

src/exampleData/1.cn.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ export default {
22
nodeData: {
33
id: 'me-root',
44
topic: 'Mind Elixir',
5-
root: true,
65
children: [
76
{
87
topic: '什么是 Mind Elixir',

src/exampleData/1.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const aboutMindElixir: MindElixirData = {
55
nodeData: {
66
id: 'me-root',
77
topic: 'Mind Elixir',
8-
root: true,
98
tags: ['Mind Map Core'],
109
children: [
1110
{

src/exampleData/2.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const mindElixirStruct: MindElixirData = {
1515
nodeData: {
1616
id: 'me-root',
1717
topic: 'HTML structure',
18-
root: true,
1918
children: [
2019
{
2120
topic: 'div.map-container',

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ MindElixir.DARK_THEME = DARK_THEME
129129
* @memberof MindElixir
130130
* @static
131131
*/
132-
MindElixir.version = '4.1.0'
132+
MindElixir.version = '4.1.1'
133133
/**
134134
* @function
135135
* @memberof MindElixir

tests/drag-and-drop.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const data = {
77
nodeData: {
88
topic: 'root-topic',
99
id: 'root-id',
10-
root: true,
1110
children: [
1211
{
1312
id: m1,

tests/interaction.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const data = {
77
nodeData: {
88
topic,
99
id,
10-
root: true,
1110
children: [
1211
{
1312
id: 'middle',

tests/multiple-instance.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const data1 = {
99
nodeData: {
1010
id: 'data1',
1111
topic: 'new topic',
12-
root: true,
1312
children: [],
1413
},
1514
}
@@ -18,7 +17,6 @@ const data2 = {
1817
nodeData: {
1918
id: 'data2',
2019
topic: 'new topic',
21-
root: true,
2220
children: [
2321
{
2422
id: 'child',

tests/multiple-node.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const data = {
55
nodeData: {
66
topic: 'root',
77
id: 'root',
8-
root: true,
98
children: [
109
{
1110
id: 'middle1',

tests/topic-select.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const data = {
55
nodeData: {
66
topic: 'root',
77
id: 'root',
8-
root: true,
98
children: [
109
{
1110
id: 'middle1',

0 commit comments

Comments
 (0)