-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcustom-elements.json
More file actions
74 lines (74 loc) · 2.72 KB
/
custom-elements.json
File metadata and controls
74 lines (74 loc) · 2.72 KB
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
{
"schemaVersion": "1.0.0",
"readme": "README.md",
"modules": [
{
"kind": "javascript-module",
"path": "dist/slider/SliderWebcomponent.js",
"declarations": [
{
"kind": "class",
"description": "A Slider Control",
"name": "SliderWebcomponent",
"attributes": [
{
"name": "min",
"fieldName": "min"
},
{
"name": "max",
"fieldName": "max"
},
{
"name": "value-min",
"fieldName": "value-min"
},
{
"name": "value-max",
"fieldName": "value-max"
},
{
"name": "slider-color",
"fieldName": "slider-color"
},
{
"name": "thumb-color",
"fieldName": "thumb-color"
}
],
"events": [
{
"name": "value-min-attribute-changed",
"description": "Is raised when the min-value attribute changes",
"type": {
"title": "String"
}
},
{
"name": "value-max-attribute-changed",
"description": "Is raised when the max-value attribute changes",
"type": {
"title": "String"
}
}
],
"superclass": {
"name": "BaseCustomWebComponentConstructorAppend"
},
"tagName": "node-projects-slider",
"customElement": true
}
],
"exports": [
{
"kind": "custom-element-definition",
"name": "node-projects-slider",
"declaration": {
"name": "SliderWebcomponent",
"module": "dist/slider/SliderWebcomponent.js"
}
}
]
}
]
}