vault backup: 2026-04-13 17:46:47

This commit is contained in:
2026-04-13 17:46:48 +08:00
parent 83a2bb56da
commit 2720bb69a8
19 changed files with 4109 additions and 8 deletions

View File

@@ -0,0 +1,132 @@
{
"nodes": [
{
"id": "group01",
"type": "group",
"x": -50,
"y": -50,
"width": 600,
"height": 400,
"label": "Group 1 - Core Concepts",
"color": "4"
},
{
"id": "group02",
"type": "group",
"x": 650,
"y": -50,
"width": 600,
"height": 400,
"label": "Group 2 - Applications",
"color": "5"
},
{
"id": "node01",
"type": "text",
"x": 0,
"y": 0,
"width": 240,
"height": 100,
"text": "Concept A",
"color": "4"
},
{
"id": "node02",
"type": "text",
"x": 290,
"y": 0,
"width": 240,
"height": 100,
"text": "Concept B",
"color": "4"
},
{
"id": "node03",
"type": "text",
"x": 0,
"y": 150,
"width": 240,
"height": 100,
"text": "Concept C",
"color": "4"
},
{
"id": "node04",
"type": "text",
"x": 290,
"y": 150,
"width": 240,
"height": 100,
"text": "Concept D",
"color": "4"
},
{
"id": "node05",
"type": "text",
"x": 700,
"y": 0,
"width": 240,
"height": 100,
"text": "Application 1",
"color": "5"
},
{
"id": "node06",
"type": "text",
"x": 990,
"y": 0,
"width": 240,
"height": 100,
"text": "Application 2",
"color": "5"
},
{
"id": "node07",
"type": "text",
"x": 700,
"y": 150,
"width": 240,
"height": 100,
"text": "Application 3",
"color": "5"
}
],
"edges": [
{
"id": "e1",
"fromNode": "node01",
"fromSide": "bottom",
"toNode": "node03",
"toSide": "top",
"toEnd": "arrow"
},
{
"id": "e2",
"fromNode": "node02",
"fromSide": "bottom",
"toNode": "node04",
"toSide": "top",
"toEnd": "arrow"
},
{
"id": "e3",
"fromNode": "node01",
"fromSide": "right",
"toNode": "node05",
"toSide": "left",
"toEnd": "arrow",
"label": "leads to",
"color": "3"
},
{
"id": "e4",
"fromNode": "node02",
"fromSide": "right",
"toNode": "node06",
"toSide": "left",
"toEnd": "arrow",
"label": "enables",
"color": "3"
}
]
}

View File

@@ -0,0 +1,106 @@
{
"nodes": [
{
"id": "root001",
"type": "text",
"x": -150,
"y": -60,
"width": 300,
"height": 120,
"text": "# Central Topic\n\nMain concept goes here",
"color": "4"
},
{
"id": "branch01",
"type": "text",
"x": 250,
"y": -200,
"width": 220,
"height": 100,
"text": "Branch 1\n\nFirst main idea",
"color": "5"
},
{
"id": "branch02",
"type": "text",
"x": 250,
"y": -50,
"width": 220,
"height": 100,
"text": "Branch 2\n\nSecond main idea",
"color": "5"
},
{
"id": "branch03",
"type": "text",
"x": 250,
"y": 100,
"width": 220,
"height": 100,
"text": "Branch 3\n\nThird main idea",
"color": "5"
},
{
"id": "detail01",
"type": "text",
"x": 550,
"y": -200,
"width": 200,
"height": 80,
"text": "Detail A",
"color": "6"
},
{
"id": "detail02",
"type": "text",
"x": 550,
"y": -100,
"width": 200,
"height": 80,
"text": "Detail B",
"color": "6"
}
],
"edges": [
{
"id": "e1",
"fromNode": "root001",
"fromSide": "right",
"toNode": "branch01",
"toSide": "left",
"toEnd": "arrow"
},
{
"id": "e2",
"fromNode": "root001",
"fromSide": "right",
"toNode": "branch02",
"toSide": "left",
"toEnd": "arrow"
},
{
"id": "e3",
"fromNode": "root001",
"fromSide": "right",
"toNode": "branch03",
"toSide": "left",
"toEnd": "arrow"
},
{
"id": "e4",
"fromNode": "branch01",
"fromSide": "right",
"toNode": "detail01",
"toSide": "left",
"toEnd": "arrow"
},
{
"id": "e5",
"fromNode": "branch01",
"fromSide": "right",
"toNode": "detail02",
"toSide": "left",
"toEnd": "arrow"
}
]
}