-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json.tmpl
34 lines (34 loc) · 1.06 KB
/
manifest.json.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"manifest": "1",
"version": "0.1.0",
"elements": [
{
"name": "My Hello World",
"path": "elements/hello_world",
"version": "1.0.0",
"settings": {
"config": {
"autopop": true
},
"properties": [
{
"name": "settings",
"label": "Settings",
"type": "group",
"properties": [
{
"name": "hwTextValue",
"label": "Display Value",
"type": "string",
"default": "Hello World",
"hidden": false,
"private": false,
"tooltip": "Change the text displayed in this element"
}
]
}
]
}
}
]
}