-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.json
57 lines (57 loc) · 1.25 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
{
"type": "component",
"metadata": {},
"schema": {
"name": "countdown_timer",
"friendlyName": "timer",
"description": " The timer counts down to a specific date time. The timer can use a field from a datasource provider.",
"icon": "Text",
"settings": [
{
"type": "field/datetime",
"label": "Field",
"key": "field",
"required": true
},
{
"type": "select",
"options": ["Small", "Medium", "Large"],
"defaultValue": "Large",
"key": "size",
"label": "Size"
},
{
"type": "select",
"options": [
{
"label": "Square",
"value": "0%"
},
{
"label": "Medium-Rounded",
"value": "10%"
},
{
"label": "Round",
"value": "100%"
}
],
"key": "shape",
"defaultValue": "0%",
"label": "Shape"
},
{
"type": "color",
"label": "Background Color",
"defaultValue": "#4CAF50",
"key": "color"
},
{
"type": "text",
"label": "Countdown Reached Text",
"defaultValue": "Complete",
"key": "complete_text"
}
]
}
}