-
Notifications
You must be signed in to change notification settings - Fork 7
/
custom-elements.json
56 lines (56 loc) · 1.18 KB
/
custom-elements.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
{
"version": 2,
"tags": [
{
"name": "temba-checkbox",
"description": "A simple checkbox",
"properties": [
{
"name": "label",
"type": "String",
"description": "The label for the checkbox",
"default": null
}
],
"events": [],
"slots": [],
"cssProperties": [
{
"name": "--temba-checkbox-text-color",
"description": "Main Text Color",
"type": "Color"
}
]
},
{
"name": "temba-charcount",
"description": "Character counter with unicode detection",
"properties": [
{
"name": "text",
"type": "String",
"description": "The text to count",
"default": null
}
],
"events": [],
"slots": [],
"cssProperties": []
},
{
"name": "temba-select",
"description": "A select widget",
"properties": [
{
"name": "name",
"type": "String",
"description": "The form name for the select box",
"default": null
}
],
"events": [],
"slots": [],
"cssProperties": []
}
]
}