@openremote/or-thermostat 1.6.0-snapshot.20250519123755 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +137 -2
- package/dist/umd/index.bundle.js +1 -1
- package/package.json +4 -4
package/custom-elements.json
CHANGED
|
@@ -5,8 +5,143 @@
|
|
|
5
5
|
{
|
|
6
6
|
"kind": "javascript-module",
|
|
7
7
|
"path": "src/index.ts",
|
|
8
|
-
"declarations": [
|
|
9
|
-
|
|
8
|
+
"declarations": [
|
|
9
|
+
{
|
|
10
|
+
"kind": "class",
|
|
11
|
+
"description": "",
|
|
12
|
+
"name": "OrThermostat",
|
|
13
|
+
"members": [
|
|
14
|
+
{
|
|
15
|
+
"kind": "field",
|
|
16
|
+
"name": "_drawerOpened",
|
|
17
|
+
"type": {
|
|
18
|
+
"text": "boolean"
|
|
19
|
+
},
|
|
20
|
+
"privacy": "private",
|
|
21
|
+
"default": "false",
|
|
22
|
+
"attribute": "_drawerOpened"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"kind": "field",
|
|
26
|
+
"name": "assetId",
|
|
27
|
+
"privacy": "private",
|
|
28
|
+
"default": "undefined",
|
|
29
|
+
"attribute": "assetId"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"kind": "field",
|
|
33
|
+
"name": "label",
|
|
34
|
+
"privacy": "private",
|
|
35
|
+
"default": "undefined",
|
|
36
|
+
"attribute": "label"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"kind": "field",
|
|
40
|
+
"name": "_connected",
|
|
41
|
+
"type": {
|
|
42
|
+
"text": "boolean"
|
|
43
|
+
},
|
|
44
|
+
"privacy": "private",
|
|
45
|
+
"default": "false"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"kind": "field",
|
|
49
|
+
"name": "_subscriptionId",
|
|
50
|
+
"type": {
|
|
51
|
+
"text": "string | undefined"
|
|
52
|
+
},
|
|
53
|
+
"privacy": "private",
|
|
54
|
+
"default": "undefined"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"kind": "field",
|
|
58
|
+
"name": "_displayedLabel",
|
|
59
|
+
"type": {
|
|
60
|
+
"text": "string | undefined"
|
|
61
|
+
},
|
|
62
|
+
"privacy": "private",
|
|
63
|
+
"default": "undefined"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"kind": "field",
|
|
67
|
+
"name": "_currentTemperature",
|
|
68
|
+
"type": {
|
|
69
|
+
"text": "number"
|
|
70
|
+
},
|
|
71
|
+
"privacy": "private",
|
|
72
|
+
"default": "0"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"kind": "field",
|
|
76
|
+
"name": "_targetTemperature",
|
|
77
|
+
"type": {
|
|
78
|
+
"text": "number"
|
|
79
|
+
},
|
|
80
|
+
"privacy": "private",
|
|
81
|
+
"default": "0"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"kind": "method",
|
|
85
|
+
"name": "subscribe"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"kind": "method",
|
|
89
|
+
"name": "unsubscribe"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"kind": "field",
|
|
93
|
+
"name": "displayedLabel",
|
|
94
|
+
"privacy": "private"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"kind": "field",
|
|
98
|
+
"name": "currentTemperature",
|
|
99
|
+
"privacy": "private"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"kind": "field",
|
|
103
|
+
"name": "targetTemperature",
|
|
104
|
+
"privacy": "private"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"attributes": [
|
|
108
|
+
{
|
|
109
|
+
"name": "_drawerOpened",
|
|
110
|
+
"type": {
|
|
111
|
+
"text": "boolean"
|
|
112
|
+
},
|
|
113
|
+
"default": "false",
|
|
114
|
+
"fieldName": "_drawerOpened"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "assetId",
|
|
118
|
+
"default": "undefined",
|
|
119
|
+
"fieldName": "assetId"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "label",
|
|
123
|
+
"default": "undefined",
|
|
124
|
+
"fieldName": "label"
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"superclass": {
|
|
128
|
+
"name": "LitElement",
|
|
129
|
+
"package": "lit"
|
|
130
|
+
},
|
|
131
|
+
"tagName": "or-thermostat",
|
|
132
|
+
"customElement": true
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"exports": [
|
|
136
|
+
{
|
|
137
|
+
"kind": "custom-element-definition",
|
|
138
|
+
"name": "or-thermostat",
|
|
139
|
+
"declaration": {
|
|
140
|
+
"name": "OrThermostat",
|
|
141
|
+
"module": "src/index.ts"
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
]
|
|
10
145
|
}
|
|
11
146
|
]
|
|
12
147
|
}
|