-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-types.json
95 lines (95 loc) · 2.38 KB
/
web-types.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"$schema": "http://json.schemastore.org/web-types",
"name": "lit-web-types",
"default-icon": "icon/lit.png",
"js-types-syntax": "typescript",
"version": "0.1.5",
"framework": "lit",
"framework-config": {
"enable-when": {
"node-packages": [
"lit",
"lit-html"
]
}
},
"contributions": {
"html": {
"attributes": [
{
"name": "Event listeners",
"description": "Event listeners expression",
"doc-url": "https://lit.dev/docs/templates/expressions/#event-listener-expressions",
"value": {
"kind": "expression",
"type": "any",
"required": true
},
"virtual": true,
"pattern": {
"or": [
{
"items": [
"/html/events",
"/js/events"
],
"template": [
"@",
"#...",
"#item:event name"
],
"priority": "normal"
},
{
"template": [
{
"regex": "@[-a-z0-9]+"
}
],
"priority": "lowest"
}
]
}
},
{
"name": "Boolean Attributes",
"description": "Boolean Attributes expression",
"doc-url": "https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions",
"value": {
"kind": "expression",
"type": "boolean",
"required": true
},
"virtual": true,
"pattern": {
"items": "/html/attributes",
"template": [
"?",
"#...",
"#item:attribute name"
]
}
},
{
"name": "Properties",
"description": "Properties expression",
"doc-url": "https://lit.dev/docs/templates/expressions/#property-expressions",
"value": {
"kind": "expression",
"type": "any",
"required": true
},
"virtual": true,
"pattern": {
"items": "/js/properties",
"template": [
".",
"#...",
"#item:property name"
]
}
}
]
}
}
}