-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema.json
41 lines (41 loc) · 909 Bytes
/
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
{
"type": "component",
"metadata": {},
"schema": {
"name": "bb-avatar",
"friendlyName": "bb-avatar",
"description": "A content component for a profile picture and some details",
"icon": "Text",
"settings": [
{
"type": "text",
"key": "imageUrl",
"label": "Image URL"
},
{
"type": "select",
"options": ["16px", "24px", "32px","40px", "48px"],
"key": "size",
"label": "Avatar Size",
"defaultValue": "32px"
},
{
"type": "boolean",
"key": "isShowingDetails",
"label": "Show details?"
},
{
"type": "text",
"key": "title",
"label": "Title",
"dependsOn": "isShowingDetails"
},
{
"type": "text",
"key": "caption",
"label": "Caption",
"dependsOn": "isShowingDetails"
}
]
}
}