StructV2/demo/data.js

68 lines
1.6 KiB
JavaScript
Raw Normal View History

2023-03-24 06:48:02 +00:00
const SOURCES_DATA = [
2022-10-23 12:41:03 +00:00
{
2023-03-24 06:48:02 +00:00
IndentedTree: {
2022-10-23 12:41:03 +00:00
"data": [{
2022-03-11 09:07:09 +00:00
"child": [
2023-03-24 06:48:02 +00:00
"0x2",
"0x3",
"0x5",
2022-03-11 09:07:09 +00:00
],
2023-03-24 06:48:02 +00:00
"id": "0x1",
2022-10-23 12:41:03 +00:00
"root": true,
2023-03-24 06:48:02 +00:00
"data": "A",
"type": "default",
},
{ "child":["0x9"],
"id": "0x2",
"data": "B",
"type": "default",
},
{
2022-03-11 09:07:09 +00:00
"child": [
2023-03-24 06:48:02 +00:00
"0x4",
"0x7"
],
2023-03-24 06:48:02 +00:00
"id": "0x3",
"data": "C",
"type": "default",
},
2022-10-23 12:41:03 +00:00
{
"child": [
2023-03-24 06:48:02 +00:00
"0x6",
2022-10-23 12:41:03 +00:00
],
2023-03-24 06:48:02 +00:00
"id": "0x4",
"data": "D",
2023-03-24 06:48:02 +00:00
"type": "default",
},
{
"id": "0x5",
"data": "E",
2023-03-24 06:48:02 +00:00
"type": "default",
2022-10-23 12:41:03 +00:00
},
2023-03-24 06:48:02 +00:00
{"child":["0x8"],
"id": "0x6",
"data": "F",
2022-10-23 12:41:03 +00:00
"type": "default",
},
{
2023-03-24 06:48:02 +00:00
"id": "0x7",
"data": "G",
2022-10-23 12:41:03 +00:00
"type": "default",
},
{
2023-03-24 06:48:02 +00:00
"id": "0x8",
"data": "I",
2022-10-23 12:41:03 +00:00
"type": "default",
},
{
2023-03-24 06:48:02 +00:00
"id": "0x9",
"data": "J",
"type": "default",
2022-10-23 12:41:03 +00:00
},
2023-03-24 06:48:02 +00:00
2022-10-23 12:41:03 +00:00
],
2023-03-24 06:48:02 +00:00
"layouter": "Indented"
2022-10-23 12:41:03 +00:00
}
2022-04-06 03:59:24 +00:00
}
2023-03-24 06:48:02 +00:00
2022-10-23 12:41:03 +00:00
];