-
Notifications
You must be signed in to change notification settings - Fork 3
/
schema.json
78 lines (78 loc) · 1.61 KB
/
schema.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"type": "component",
"metadata": {},
"schema": {
"name": "accordion",
"friendlyName": "Accordion",
"description": "A collapsible container Budibase component",
"icon": "TreeExpandAll",
"hasChildren": true,
"illegalChildren": ["section"],
"showSettingsBar": true,
"settings": [
{
"type": "text",
"label": "Label",
"placeholder": "Label",
"key": "label"
},
{
"type": "text",
"label": "Width",
"key": "width",
"defaultValue": "",
"placeholder": "Auto"
},
{
"type": "select",
"label": "Size",
"key": "size",
"defaultValue": "11px",
"showInBar": true,
"barStyle": "picker",
"options": [
{
"label": "Extra Small",
"value": "9px"
},
{
"label": "Small",
"value": "11px"
},
{
"label": "Medium",
"value": "14px"
},
{
"label": "Large",
"value": "18px"
},
{
"label": "Extra Large",
"value": "24px"
},
{
"label": "2XL",
"value": "32px"
}
]
},
{
"type": "select",
"label": "Default State",
"key": "openDefault",
"defaultValue": true,
"options": [
{
"label": "Open",
"value": true
},
{
"label": "Closed",
"value": false
}
]
}
]
}
}