@bitpoolos/edge-bacnet 1.4.4 → 1.4.6
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/CHANGELOG.md +30 -0
- package/bacnet_client.js +463 -495
- package/bacnet_device.js +10 -0
- package/bacnet_gateway.html +141 -135
- package/bacnet_read.html +73 -47
- package/bacnet_write.html +7 -5
- package/bitpool_inject.html +49 -136
- package/package.json +1 -1
- package/resources/node-bacstack-ts/dist/lib/client.js +3 -0
- package/resources/node-bacstack-ts/dist/lib/transport.js +12 -7
- package/resources/style.css +612 -203
- package/treeBuilder.js +41 -5
package/resources/style.css
CHANGED
|
@@ -1,343 +1,752 @@
|
|
|
1
1
|
.writePointIcon {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
background: url("icons/icon-write.svg") no-repeat !important;
|
|
3
|
+
width: 20px;
|
|
4
|
+
height: 20px;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.readPointIcon {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
background: url("icons/icon-read.svg") no-repeat !important;
|
|
9
|
+
width: 20px;
|
|
10
|
+
height: 20px;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
13
|
/* Read node styles */
|
|
17
14
|
|
|
18
15
|
.refreshReadListButton {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
16
|
+
border: none;
|
|
17
|
+
border-radius: 40px;
|
|
18
|
+
height: 35px;
|
|
19
|
+
width: 35px;
|
|
20
|
+
& i {
|
|
21
|
+
color: #6c757d !important;
|
|
22
|
+
}
|
|
26
23
|
}
|
|
27
24
|
|
|
28
25
|
.p-treenode-label {
|
|
29
|
-
|
|
30
|
-
|
|
26
|
+
color: black;
|
|
27
|
+
width: 100%;
|
|
31
28
|
}
|
|
32
29
|
.p-tree {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
30
|
+
background: inherit !important;
|
|
31
|
+
border: inherit !important;
|
|
32
|
+
padding-right: 0px !important;
|
|
36
33
|
}
|
|
37
34
|
.p-button {
|
|
38
|
-
|
|
35
|
+
margin-right: 0.5rem;
|
|
39
36
|
}
|
|
40
37
|
.addPointButton {
|
|
41
|
-
|
|
38
|
+
float: right;
|
|
42
39
|
}
|
|
43
40
|
.minusPointButton {
|
|
44
|
-
|
|
41
|
+
float: right;
|
|
45
42
|
}
|
|
46
|
-
.addPointButton:hover,
|
|
47
|
-
|
|
43
|
+
.addPointButton:hover,
|
|
44
|
+
.minusPointButton:hover {
|
|
45
|
+
background: #d5d5d5 !important;
|
|
48
46
|
}
|
|
49
47
|
.pointLabel {
|
|
50
|
-
|
|
48
|
+
font-weight: 400;
|
|
49
|
+
text-wrap: pretty;
|
|
50
|
+
display: inline-block;
|
|
51
|
+
max-width: 85%;
|
|
51
52
|
}
|
|
52
53
|
.deviceLabel {
|
|
53
|
-
|
|
54
|
+
color: #1F2731;
|
|
55
|
+
font-weight: 400;
|
|
56
|
+
text-wrap: pretty;
|
|
57
|
+
}
|
|
58
|
+
.deviceLabelSpan {
|
|
59
|
+
vertical-align: bottom;
|
|
54
60
|
}
|
|
55
61
|
.removeAllButton {
|
|
56
|
-
|
|
62
|
+
float: right;
|
|
63
|
+
i, a {
|
|
64
|
+
color: #D6767C !important;
|
|
65
|
+
}
|
|
57
66
|
}
|
|
58
67
|
.addAllButton {
|
|
59
|
-
|
|
68
|
+
float: right;
|
|
69
|
+
height: 25px;
|
|
70
|
+
width: 25px;
|
|
71
|
+
i {
|
|
72
|
+
left: -2px;
|
|
73
|
+
position: relative;
|
|
74
|
+
}
|
|
60
75
|
}
|
|
61
76
|
.bacnetbutton {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
77
|
+
background: none;
|
|
78
|
+
border: none;
|
|
79
|
+
color: black;
|
|
80
|
+
font-weight: 400;
|
|
81
|
+
top: -2px !important;
|
|
66
82
|
}
|
|
67
83
|
.bacnetbutton:hover {
|
|
68
|
-
|
|
69
|
-
|
|
84
|
+
background: #f0f0f0;
|
|
85
|
+
border-radius: 10px;
|
|
70
86
|
}
|
|
71
87
|
.allFunctionsText {
|
|
72
|
-
|
|
73
|
-
|
|
88
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
|
|
89
|
+
"Segoe UI Emoji", "Segoe UI Symbol" !important;
|
|
90
|
+
padding-left: 5px;
|
|
74
91
|
}
|
|
75
92
|
.p-treenode-children > li > .p-treenode-children > li {
|
|
76
|
-
|
|
77
|
-
|
|
93
|
+
font-size: 14px;
|
|
94
|
+
color: #b5b5b5 !important;
|
|
78
95
|
}
|
|
79
96
|
.p-treenode-children > li > .p-treenode-children > .p-treenode-label {
|
|
80
|
-
|
|
97
|
+
color: #b5b5b5 !important;
|
|
81
98
|
}
|
|
82
99
|
.p-tree-toggler:enabled:hover {
|
|
83
|
-
|
|
100
|
+
background: #d5d5d5 !important;
|
|
84
101
|
}
|
|
85
102
|
.p-tree-toggler:focus {
|
|
86
|
-
|
|
87
|
-
|
|
103
|
+
border: none !important;
|
|
104
|
+
box-shadow: none !important;
|
|
88
105
|
}
|
|
89
106
|
.deviceStatus {
|
|
90
|
-
|
|
107
|
+
font-size: 10px;
|
|
91
108
|
}
|
|
92
109
|
.statusOnline {
|
|
93
|
-
|
|
110
|
+
color: #11c511;
|
|
94
111
|
}
|
|
95
112
|
.statusOffline {
|
|
96
|
-
|
|
113
|
+
color: red;
|
|
97
114
|
}
|
|
98
115
|
.readDeviceList {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
116
|
+
.deviceLabel {
|
|
117
|
+
position: absolute;
|
|
118
|
+
}
|
|
119
|
+
.p-tree-wrapper {
|
|
120
|
+
background-color: #FAFAFA;
|
|
121
|
+
border: 1px solid #D4D4D4;
|
|
122
|
+
border-radius: 10px;
|
|
123
|
+
padding: 10px;
|
|
124
|
+
}
|
|
125
|
+
.p-tree-toggler-icon {
|
|
126
|
+
color: #62ABE9;
|
|
127
|
+
}
|
|
128
|
+
.p-treenode-icon, .pointLabel {
|
|
129
|
+
color: #1F2731;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.networkTreeContent, .read-writeList-tab {
|
|
134
|
+
.p-tree-wrapper {
|
|
135
|
+
background-color: #FAFAFA;
|
|
136
|
+
border: 1px solid #D4D4D4;
|
|
137
|
+
border-radius: 10px;
|
|
138
|
+
padding: 10px;
|
|
139
|
+
}
|
|
140
|
+
.p-tree-toggler-icon {
|
|
141
|
+
color: #62ABE9;
|
|
142
|
+
}
|
|
143
|
+
.p-treenode-icon, .pointLabel {
|
|
144
|
+
color: #1F2731;
|
|
145
|
+
}
|
|
102
146
|
}
|
|
147
|
+
|
|
148
|
+
.read-readList-tab {
|
|
149
|
+
.deviceLabel {
|
|
150
|
+
position: absolute;
|
|
151
|
+
color: #0689BC !important;
|
|
152
|
+
}
|
|
153
|
+
.p-tree-wrapper {
|
|
154
|
+
background-color: #FAFAFA;
|
|
155
|
+
border: 1px solid #D4D4D4;
|
|
156
|
+
border-radius: 10px;
|
|
157
|
+
padding: 10px;
|
|
158
|
+
}
|
|
159
|
+
.p-tree-toggler-icon {
|
|
160
|
+
color: #62ABE9;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
103
164
|
.objectPropertiesLabel {
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
165
|
+
display: flex !important;
|
|
166
|
+
flex-direction: row;
|
|
167
|
+
align-items: center;
|
|
107
168
|
}
|
|
108
169
|
.p-tree .p-tree-container .p-treenode .p-treenode-content:focus {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
170
|
+
outline: 0 none !important;
|
|
171
|
+
outline-offset: 0 !important;
|
|
172
|
+
box-shadow: inset 0 0 0 1px #bdbdbd !important;
|
|
112
173
|
}
|
|
113
174
|
.checkbox-round {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
175
|
+
width: 13px !important;
|
|
176
|
+
height: 13px !important;
|
|
177
|
+
background-color: white;
|
|
178
|
+
border-radius: 50%;
|
|
179
|
+
vertical-align: middle;
|
|
180
|
+
border: 1px solid #ddd;
|
|
181
|
+
appearance: none;
|
|
182
|
+
-webkit-appearance: none;
|
|
183
|
+
outline: none;
|
|
184
|
+
cursor: pointer;
|
|
124
185
|
}
|
|
125
186
|
.checkbox-round:checked {
|
|
126
|
-
|
|
187
|
+
background-color: #00aeef;
|
|
127
188
|
}
|
|
128
189
|
.checkbox-round:focus {
|
|
129
|
-
|
|
130
|
-
}
|
|
131
|
-
.p-tree-filter:focus, .p-tree-filter:focus-visible, .p-inputtext:enabled:hover {
|
|
132
|
-
box-shadow: inset 0 0 0 0.15rem #dfdcdc !important;
|
|
133
|
-
border-color: transparent !important;
|
|
190
|
+
outline: none !important;
|
|
134
191
|
}
|
|
135
|
-
.
|
|
136
|
-
|
|
192
|
+
.p-tree-filter:focus,
|
|
193
|
+
.p-tree-filter:focus-visible,
|
|
194
|
+
.p-inputtext:enabled:hover {
|
|
195
|
+
box-shadow: inset 0 0 0 0.15rem #dfdcdc !important;
|
|
196
|
+
border-color: transparent !important;
|
|
137
197
|
}
|
|
138
198
|
.p-tree-container {
|
|
139
|
-
|
|
199
|
+
margin: 0 !important;
|
|
140
200
|
}
|
|
141
201
|
.reloadButtonIcon {
|
|
142
|
-
|
|
202
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
|
|
203
|
+
"Segoe UI Emoji", "Segoe UI Symbol" !important;
|
|
143
204
|
}
|
|
144
205
|
.exportReadListButton {
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
206
|
+
border: none;
|
|
207
|
+
background: none;
|
|
208
|
+
font-size: 14px !important;
|
|
209
|
+
float: left;
|
|
210
|
+
display: flex;
|
|
211
|
+
align-items: center;
|
|
151
212
|
}
|
|
152
213
|
.exportReadListButton:hover {
|
|
153
|
-
|
|
154
|
-
|
|
214
|
+
background-color: #d5d5d5;
|
|
215
|
+
border-radius: 5px;
|
|
155
216
|
}
|
|
156
217
|
.removeAllDevicesButton {
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
218
|
+
border: none;
|
|
219
|
+
background: none;
|
|
220
|
+
font-size: 14px !important;
|
|
221
|
+
float: right;
|
|
222
|
+
display: flex;
|
|
223
|
+
align-items: center;
|
|
224
|
+
padding: 5px;
|
|
225
|
+
font-weight: bold;
|
|
226
|
+
margin-left: 95px !important;
|
|
165
227
|
}
|
|
166
228
|
.removeAllDevicesButton:hover {
|
|
167
|
-
|
|
168
|
-
|
|
229
|
+
background-color: #d5d5d5;
|
|
230
|
+
border-radius: 10px;
|
|
169
231
|
}
|
|
170
232
|
.reloadButton {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
233
|
+
border: none;
|
|
234
|
+
background: none;
|
|
235
|
+
font-size: 14px !important;
|
|
236
|
+
float: right;
|
|
175
237
|
}
|
|
176
238
|
.rebuildDataButton {
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
239
|
+
border: none;
|
|
240
|
+
background: none;
|
|
241
|
+
font-size: 14px !important;
|
|
242
|
+
float: right;
|
|
181
243
|
}
|
|
182
244
|
.reloadButton:hover {
|
|
183
|
-
|
|
184
|
-
|
|
245
|
+
background-color: #d5d5d5;
|
|
246
|
+
border-radius: 10px;
|
|
185
247
|
}
|
|
186
248
|
.rebuildDataButton:hover {
|
|
187
|
-
|
|
188
|
-
|
|
249
|
+
background-color: #d5d5d5;
|
|
250
|
+
border-radius: 10px;
|
|
189
251
|
}
|
|
190
252
|
.headerDiv {
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
253
|
+
display: flex;
|
|
254
|
+
flex-direction: row;
|
|
255
|
+
flex-wrap: nowrap;
|
|
256
|
+
justify-content: space-between;
|
|
257
|
+
height: 20px;
|
|
258
|
+
min-width: max-content;
|
|
196
259
|
}
|
|
197
260
|
.msgTypeDiv {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
261
|
+
display: flex;
|
|
262
|
+
align-items: flex-start;
|
|
263
|
+
flex-direction: column;
|
|
201
264
|
}
|
|
202
265
|
.p-progressbar .p-progressbar-value {
|
|
203
|
-
|
|
266
|
+
background: #00aeef !important;
|
|
204
267
|
}
|
|
205
268
|
.p-treenode-label {
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
269
|
+
overflow: hidden;
|
|
270
|
+
white-space: nowrap;
|
|
271
|
+
text-overflow: ellipsis;
|
|
272
|
+
}
|
|
273
|
+
.bp-readNode-progressbar {
|
|
274
|
+
height: 20px !important;
|
|
209
275
|
}
|
|
210
|
-
.
|
|
211
|
-
|
|
276
|
+
.bp-networktree-tab {
|
|
277
|
+
/* min-width: 590px; */
|
|
212
278
|
}
|
|
213
279
|
#read-readList-tab {
|
|
214
|
-
|
|
215
|
-
|
|
280
|
+
display: flex;
|
|
281
|
+
flex-direction: column;
|
|
216
282
|
}
|
|
217
283
|
.removeAllDevicesDiv {
|
|
218
|
-
|
|
219
|
-
|
|
284
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
|
|
285
|
+
"Segoe UI Emoji", "Segoe UI Symbol";
|
|
286
|
+
padding-right: 20px;
|
|
287
|
+
display: flex;
|
|
288
|
+
flex-direction: row;
|
|
289
|
+
flex-wrap: nowrap;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.bp-read-list-refresh-button {
|
|
293
|
+
margin-left: 10px !important;
|
|
294
|
+
span {
|
|
295
|
+
padding-left: 5px;
|
|
296
|
+
}
|
|
220
297
|
}
|
|
221
298
|
.p-tree .p-treenode-children {
|
|
222
|
-
|
|
299
|
+
padding: 0 !important;
|
|
223
300
|
}
|
|
224
301
|
.p-tree-toggler .p-link {
|
|
225
|
-
|
|
302
|
+
width: 25px !important;
|
|
226
303
|
}
|
|
227
304
|
.dot {
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
305
|
+
height: 13px;
|
|
306
|
+
width: 13px;
|
|
307
|
+
border-radius: 50%;
|
|
308
|
+
display: inline-block;
|
|
309
|
+
margin-right: 5px;
|
|
310
|
+
vertical-align: middle;
|
|
234
311
|
}
|
|
235
312
|
.dotOnline {
|
|
236
|
-
|
|
313
|
+
background-color: #63B686;
|
|
237
314
|
}
|
|
238
315
|
.dotOffline {
|
|
239
|
-
|
|
316
|
+
background-color: red;
|
|
240
317
|
}
|
|
241
318
|
.mstpDeviceCount {
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
319
|
+
margin-left: 10px;
|
|
320
|
+
background-color: #00aeef;
|
|
321
|
+
color: #ffffff;
|
|
322
|
+
border-radius: 45%;
|
|
323
|
+
font-size: 12px;
|
|
247
324
|
}
|
|
248
325
|
|
|
249
326
|
.point-context-menu {
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
327
|
+
--mouse-x: 0;
|
|
328
|
+
--mouse-y: 0;
|
|
329
|
+
display: none;
|
|
330
|
+
position: fixed;
|
|
331
|
+
margin: 0;
|
|
332
|
+
left: 0;
|
|
333
|
+
top: 0;
|
|
334
|
+
/* The following line is responsible for all the magic */
|
|
335
|
+
transform: translateX(min(var(--mouse-x), calc(100vw - 100%))) translateY(min(var(--mouse-y), calc(100vh - 100%)));
|
|
336
|
+
z-index: 10;
|
|
260
337
|
}
|
|
261
338
|
|
|
262
339
|
.context-menu {
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
340
|
+
--mouse-x: 0;
|
|
341
|
+
--mouse-y: 0;
|
|
342
|
+
display: none;
|
|
343
|
+
position: fixed;
|
|
344
|
+
margin: 0;
|
|
345
|
+
left: 0;
|
|
346
|
+
top: 0;
|
|
347
|
+
/* The following line is responsible for all the magic */
|
|
348
|
+
transform: translateX(min(var(--mouse-x), calc(100vw - 100%))) translateY(min(var(--mouse-y), calc(100vh - 100%)));
|
|
349
|
+
z-index: 10;
|
|
273
350
|
}
|
|
274
351
|
.context-menu-container {
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
352
|
+
flex-direction: column;
|
|
353
|
+
justify-content: space-evenly;
|
|
354
|
+
align-items: flex-start;
|
|
355
|
+
width: 100%;
|
|
279
356
|
}
|
|
280
357
|
.context-menu-item {
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
358
|
+
width: 100%;
|
|
359
|
+
height: 30px;
|
|
360
|
+
display: flex;
|
|
361
|
+
flex-direction: column;
|
|
362
|
+
justify-content: space-around;
|
|
286
363
|
}
|
|
287
364
|
.context-menu-item:hover {
|
|
288
|
-
|
|
365
|
+
cursor: pointer;
|
|
289
366
|
}
|
|
290
367
|
.context-menu-item-text {
|
|
291
|
-
|
|
368
|
+
padding-left: 10px;
|
|
292
369
|
}
|
|
293
370
|
.context-menu-icon {
|
|
294
|
-
|
|
371
|
+
color: white;
|
|
295
372
|
}
|
|
296
373
|
.export-points-button {
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
374
|
+
font-size: 13px;
|
|
375
|
+
border: 1px solid #20b7f1;
|
|
376
|
+
border-radius: 5px !important;
|
|
377
|
+
padding: 6px 12px;
|
|
378
|
+
cursor: pointer;
|
|
379
|
+
margin-right: 10px !important;
|
|
380
|
+
background: white;
|
|
381
|
+
|
|
382
|
+
i,a {
|
|
383
|
+
color: #20b7f1;
|
|
384
|
+
font-weight: bold;
|
|
385
|
+
}
|
|
386
|
+
a:hover {
|
|
387
|
+
color: #20b7f1;
|
|
388
|
+
}
|
|
302
389
|
}
|
|
303
390
|
.diplayNameDialogSave {
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
391
|
+
background-color: #3295bd !important;
|
|
392
|
+
border-radius: 0 !important;
|
|
393
|
+
margin-right: 0 !important;
|
|
307
394
|
}
|
|
308
395
|
.diplayNameDialogSave > .p-button-label {
|
|
309
|
-
|
|
396
|
+
color: white !important;
|
|
310
397
|
}
|
|
311
398
|
.diplayNameDialogCancel {
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
399
|
+
background-color: #ffffff !important;
|
|
400
|
+
color: #666 !important;
|
|
401
|
+
border: 1px solid var(--red-ui-secondary-border-color);
|
|
402
|
+
border-radius: 0 !important;
|
|
403
|
+
margin-right: 0 !important;
|
|
317
404
|
}
|
|
318
405
|
.diplayNameDialogCancel:hover {
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
406
|
+
background-color: #e6e6e6 !important;
|
|
407
|
+
color: #666 !important;
|
|
408
|
+
border: 1px solid var(--red-ui-secondary-border-color);
|
|
322
409
|
}
|
|
323
410
|
.deviceNameDialog {
|
|
411
|
+
.p-dialog-header {
|
|
412
|
+
background: #133547 !important;
|
|
413
|
+
padding: 0.5rem !important;
|
|
414
|
+
}
|
|
415
|
+
.p-dialog-title {
|
|
416
|
+
color: white;
|
|
417
|
+
font-size: 1rem !important;
|
|
418
|
+
}
|
|
419
|
+
.p-dialog-content {
|
|
420
|
+
padding: 0.5em 0.75rem 0.5rem 0.75rem !important;
|
|
324
421
|
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
padding: 0.5rem !important;
|
|
422
|
+
& label {
|
|
423
|
+
font-size: 0.9rem !important;
|
|
328
424
|
}
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
font-size: 1rem !important;
|
|
425
|
+
& input {
|
|
426
|
+
font-size: 1rem !important;
|
|
332
427
|
}
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.bp-row {
|
|
432
|
+
display: flex;
|
|
433
|
+
flex-direction: column;
|
|
434
|
+
padding-bottom: 5px;
|
|
435
|
+
|
|
436
|
+
input,
|
|
437
|
+
select {
|
|
438
|
+
width: auto !important;
|
|
439
|
+
border-radius: 6px;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
label {
|
|
443
|
+
color: black;
|
|
444
|
+
font-weight: bold;
|
|
445
|
+
font-size: 16px;
|
|
446
|
+
width: auto !important;
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.bp-frequency-container {
|
|
451
|
+
display: flex;
|
|
452
|
+
flex-direction: row;
|
|
453
|
+
align-items: baseline;
|
|
454
|
+
|
|
455
|
+
p {
|
|
456
|
+
padding-right: 10px;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.bp-frequency-input {
|
|
460
|
+
width: 70px !important;
|
|
461
|
+
margin-right: 5px;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.bp-frequency-select {
|
|
465
|
+
width: 200px;
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.bp-checkbox-row {
|
|
470
|
+
display: flex;
|
|
471
|
+
flex-direction: row;
|
|
472
|
+
align-items: baseline;
|
|
473
|
+
|
|
474
|
+
label {
|
|
475
|
+
color: black;
|
|
476
|
+
font-weight: 500;
|
|
477
|
+
font-size: 16px;
|
|
478
|
+
width: auto !important;
|
|
479
|
+
padding-left: 10px;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
/* Hide the default checkbox */
|
|
483
|
+
input[type="checkbox"] {
|
|
484
|
+
appearance: none; /* Remove default checkbox styling */
|
|
485
|
+
-webkit-appearance: none;
|
|
486
|
+
-moz-appearance: none;
|
|
487
|
+
width: 18px;
|
|
488
|
+
height: 18px;
|
|
489
|
+
background-color: white;
|
|
490
|
+
border: 2px solid #20b7f1; /* Border color */
|
|
491
|
+
border-radius: 3px; /* Rounded corners */
|
|
492
|
+
cursor: pointer;
|
|
493
|
+
position: relative;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
/* Custom tick color */
|
|
497
|
+
input[type="checkbox"]:checked {
|
|
498
|
+
background-color: white; /* Background color when checked */
|
|
499
|
+
border-color: #20b7f1; /* Border color when checked */
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
/* Custom tick using a pseudo-element */
|
|
503
|
+
input[type="checkbox"]:checked::before {
|
|
504
|
+
content: '\2714'; /* Unicode for the tick symbol */
|
|
505
|
+
color: #20b7f1; /* Tick color */
|
|
506
|
+
font-size: 15px;
|
|
507
|
+
position: absolute;
|
|
508
|
+
top: -4px;
|
|
509
|
+
left: 2px;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
input[type=checkbox]:focus {
|
|
513
|
+
outline: none;
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
.bp-checkbox {
|
|
517
|
+
accent-color: white;
|
|
518
|
+
bottom: -3px;
|
|
519
|
+
}
|
|
520
|
+
.bp-import-buttons {
|
|
521
|
+
margin-top: 25px;
|
|
522
|
+
label {
|
|
523
|
+
width: auto !important;
|
|
524
|
+
font-size: 13px;
|
|
525
|
+
border-color: #20b7f1;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
i,
|
|
529
|
+
a {
|
|
530
|
+
color: #20b7f1;
|
|
531
|
+
font-weight: bold;
|
|
532
|
+
}
|
|
533
|
+
a:hover {
|
|
534
|
+
color: #20b7f1;
|
|
535
|
+
font-weight: bold;
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
/* .red-ui-tab {
|
|
540
|
+
border-top-left-radius: 5px;
|
|
541
|
+
border-top-right-radius: 5px;
|
|
542
|
+
} */
|
|
543
|
+
|
|
544
|
+
.node-input-deviceIdRangeMatrix-container-row {
|
|
545
|
+
border-radius: 10px;
|
|
546
|
+
|
|
547
|
+
.red-ui-editableList-header {
|
|
548
|
+
background-color: #f5f5f5;
|
|
549
|
+
}
|
|
550
|
+
.red-ui-editableList-item-removable,
|
|
551
|
+
.red-ui-editableList-container {
|
|
552
|
+
border-radius: 10px;
|
|
553
|
+
background: #fafafa;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.red-ui-editableList-item-remove {
|
|
557
|
+
margin-top: -15px !important;
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.bp-matrix-heading {
|
|
562
|
+
padding-left: 15px;
|
|
563
|
+
font-weight: bold;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.bp-matrix-count {
|
|
567
|
+
padding-left: 10px;
|
|
568
|
+
font-size: small;
|
|
569
|
+
background: white;
|
|
570
|
+
border-radius: 10px;
|
|
571
|
+
height: 20px;
|
|
572
|
+
label {
|
|
573
|
+
left: -5px;
|
|
574
|
+
position: relative;
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.bp-matrix-itemIndex {
|
|
579
|
+
padding-left: 15px;
|
|
580
|
+
color: #1fb7f0;
|
|
581
|
+
font-size: 15px;
|
|
582
|
+
font-weight: bold;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.bp-matrix-enable {
|
|
586
|
+
margin-left: 80px;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.bp-button-group {
|
|
590
|
+
display: flex;
|
|
591
|
+
background: #F5F5F5;
|
|
592
|
+
height: 55px;
|
|
593
|
+
border-radius: 10px;
|
|
594
|
+
|
|
595
|
+
.msgOptions {
|
|
596
|
+
width: 50%;
|
|
597
|
+
height: 70%;
|
|
598
|
+
margin: auto;
|
|
599
|
+
border: none;
|
|
600
|
+
display: flex;
|
|
601
|
+
flex-direction: row;
|
|
602
|
+
justify-content: space-evenly;
|
|
603
|
+
align-items: center;
|
|
604
|
+
cursor: pointer;
|
|
605
|
+
transition: 1s;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
label {
|
|
609
|
+
width: auto !important;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.msgOptions:hover {
|
|
613
|
+
transition: 1s;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.discoverOption {
|
|
617
|
+
margin-left: 10px;
|
|
618
|
+
border-radius: 5px;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.pollOption {
|
|
622
|
+
margin-right: 10px;
|
|
623
|
+
border-radius: 5px;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.activeButton {
|
|
627
|
+
background: #00ADEF;
|
|
628
|
+
label {
|
|
629
|
+
color: white;
|
|
342
630
|
}
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.bp-objectPropertiesLabel {
|
|
635
|
+
float: right;
|
|
636
|
+
margin-bottom: 20px;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.bp-msg-type-row {
|
|
640
|
+
border: 1px solid #D4D4D4;
|
|
641
|
+
border-radius: 5px;
|
|
642
|
+
display: flex;
|
|
643
|
+
width: 100%;
|
|
644
|
+
flex-wrap: nowrap;
|
|
645
|
+
flex-direction: row;
|
|
646
|
+
padding-top: 10px;
|
|
647
|
+
margin-left: auto;
|
|
648
|
+
margin-right: auto;
|
|
649
|
+
margin-top: 30px;
|
|
650
|
+
padding-bottom: 15px;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.bp-object {
|
|
654
|
+
padding-left: 15px;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.bp-msg {
|
|
658
|
+
padding-left: 95px;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.bp-msg-type-labels {
|
|
662
|
+
display: flex;
|
|
663
|
+
align-items: center;
|
|
664
|
+
white-space: nowrap;
|
|
665
|
+
padding-bottom: 10px;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.bp-msg-type-column {
|
|
669
|
+
display: flex;
|
|
670
|
+
align-items: flex-start;
|
|
671
|
+
flex-direction: column;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.injectHeading>a {
|
|
675
|
+
margin: 0;
|
|
676
|
+
font-weight: 600;
|
|
677
|
+
font-size: 14px;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.injectHeading {
|
|
681
|
+
text-align: start;
|
|
682
|
+
height: 30px;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.bp-editable-list {
|
|
686
|
+
.red-ui-typedInput-type-select {
|
|
687
|
+
background: #EFFAFF;
|
|
688
|
+
color: #4D88B7 !important;
|
|
689
|
+
}
|
|
690
|
+
.red-ui-typedInput-option-trigger, .red-ui-typedInput-option-label {
|
|
691
|
+
background-color: white !important;
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.bp-prop-row {
|
|
696
|
+
width: auto;
|
|
697
|
+
border: 1px solid #ddd;
|
|
698
|
+
border-radius: 10px;
|
|
699
|
+
padding: 10px;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.bp-prop-heading {
|
|
703
|
+
padding-bottom: 10px;
|
|
704
|
+
color: #737373;
|
|
705
|
+
font-weight: bold !important;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.bp-readnode-useDeviceName {
|
|
709
|
+
margin-top: 30px;
|
|
710
|
+
margin-bottom: 30px;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.checkbox-round {
|
|
714
|
+
width: 13px !important;
|
|
715
|
+
height: 13px !important;
|
|
716
|
+
background-color: white;
|
|
717
|
+
border-radius: 50%;
|
|
718
|
+
vertical-align: middle;
|
|
719
|
+
border: 1px solid #ddd;
|
|
720
|
+
appearance: none;
|
|
721
|
+
-webkit-appearance: none;
|
|
722
|
+
outline: none;
|
|
723
|
+
cursor: pointer;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.checkbox-round:checked {
|
|
727
|
+
background-color: #00AEEF;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.checkbox-round:focus {
|
|
731
|
+
outline: none !important;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.optionsSelector {
|
|
735
|
+
min-height: 90px !important;
|
|
736
|
+
max-height: none !important;
|
|
737
|
+
display: flex;
|
|
738
|
+
flex-direction: column;
|
|
739
|
+
flex-wrap: nowrap;
|
|
740
|
+
justify-content: space-around;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.bitpoolInjectList>.red-ui-editableList>.red-ui-editableList-container {
|
|
744
|
+
min-height: 120px !important;
|
|
745
|
+
max-height: none;
|
|
746
|
+
overflow-y: scroll;
|
|
747
|
+
height: 410px !important;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.bp-deviceCount {
|
|
751
|
+
font-weight: bold;
|
|
343
752
|
}
|