@bitpoolos/edge-bacnet 1.5.3 → 1.6.1

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.
@@ -0,0 +1,503 @@
1
+ body {
2
+ font-family: Inter, Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans,
3
+ sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji" !important;
4
+ margin: 0;
5
+ padding: 0;
6
+ background-color: #fafafa;
7
+ }
8
+ #app {
9
+ margin-left: 2em;
10
+ margin-right: 2em;
11
+ }
12
+ .card {
13
+ font-family: Inter, Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans,
14
+ sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji" !important;
15
+ background: #ffffff;
16
+ padding: 2rem;
17
+ border-radius: 10px;
18
+ margin-bottom: 1rem;
19
+ }
20
+ .p-field {
21
+ margin-bottom: 1.5rem;
22
+ }
23
+ .p-inputtext {
24
+ width: 100%;
25
+ }
26
+ .action-buttons .p-button {
27
+ margin-right: 0.5rem;
28
+ }
29
+
30
+ .logo {
31
+ height: 100%;
32
+ width: 100%;
33
+ }
34
+
35
+ .dividerRight {
36
+ border-right: 1px solid #d4d4d4;
37
+ padding-right: 20px;
38
+ height: 40px;
39
+ }
40
+
41
+ .statusItem {
42
+ padding-right: 10px;
43
+ margin-right: 5px;
44
+ cursor: pointer;
45
+ }
46
+
47
+ .right {
48
+ float: right;
49
+ }
50
+
51
+ .header {
52
+ display: flex;
53
+ flex-direction: row;
54
+ flex-wrap: nowrap;
55
+ justify-content: flex-start;
56
+ align-items: center;
57
+ }
58
+
59
+ .headertext {
60
+ font-family: Inter, Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans,
61
+ sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji" !important;
62
+ font-weight: 500;
63
+ font-size: 17px;
64
+ margin: 0 !important;
65
+ padding-top: 10px;
66
+ }
67
+
68
+ .actionButtons {
69
+ margin-left: auto;
70
+ }
71
+
72
+ .refreshButton {
73
+ color: #00adef !important;
74
+ border: 1px solid #00adef !important;
75
+ padding: 8px !important;
76
+ border-radius: 5px !important;
77
+ }
78
+
79
+ .bitpool-blue {
80
+ color: white !important;
81
+ background-color: #00adef !important;
82
+ border: 1px solid #00adef !important;
83
+ padding: 8px !important;
84
+ border-radius: 5px !important;
85
+ margin-left: 10px;
86
+ }
87
+
88
+ .statBlockKey {
89
+ font-weight: 500;
90
+ }
91
+
92
+ .searchBar {
93
+ font-family: Inter, Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans,
94
+ sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji" !important;
95
+ width: 100% !important;
96
+ background: white !important;
97
+ border: 1px solid #d4d4d4 !important;
98
+ border-radius: 20px !important;
99
+ height: 40px !important;
100
+ padding-left: 15px !important;
101
+ }
102
+ .searchBarContainer {
103
+ width: 100% !important;
104
+ }
105
+
106
+ .columnSelector {
107
+ border: 1px solid #e5e5e5 !important;
108
+ border-radius: 15px !important;
109
+ width: 250px;
110
+ padding-right: 10px;
111
+ margin-bottom: 20px;
112
+ }
113
+
114
+ .p-multiselect {
115
+ margin-top: 22px;
116
+ }
117
+
118
+ .p-multiselect-overlay {
119
+ border: 1px solid #e5e5e5 !important;
120
+ border-radius: 5px !important;
121
+ }
122
+
123
+ .p-multiselect-option {
124
+ margin-top: 5px !important;
125
+ margin-left: 2px !important;
126
+ margin-right: 2px !important;
127
+ padding-top: 2px !important;
128
+ padding-bottom: 2px !important;
129
+ }
130
+
131
+ .p-multiselect-option:hover {
132
+ background-color: #00adef !important;
133
+ border: 1px solid #00adef !important;
134
+ border-radius: 5px !important;
135
+ }
136
+
137
+ .p-datatable .p-datatable-header {
138
+ padding-top: 0em !important;
139
+ padding-bottom: 0 !important;
140
+ padding-left: 0 !important;
141
+ padding-right: 0 !important;
142
+ }
143
+
144
+ .tableHeaderDiv {
145
+ display: flex;
146
+ flex-direction: row;
147
+ width: 100%;
148
+ }
149
+
150
+ .pi-search:before {
151
+ position: absolute;
152
+ right: 15px;
153
+ top: 41px;
154
+ transform: translateY(-50%);
155
+ }
156
+
157
+ .p-datatable-header {
158
+ background: inherit !important;
159
+ border: none !important;
160
+ display: flex;
161
+ }
162
+
163
+ .p-datatable-table-container {
164
+ border: 1px solid #e5e5e5;
165
+ border-radius: 15px;
166
+ }
167
+
168
+ .p-datatable-paginator-bottom {
169
+ border: none !important;
170
+ }
171
+
172
+ .p-datatable-wrapper {
173
+ overflow-x: auto;
174
+ max-width: 100%;
175
+ }
176
+
177
+ .p-datatable th,
178
+ .p-datatable td {
179
+ min-width: 150px;
180
+ white-space: nowrap;
181
+ overflow: hidden;
182
+ text-overflow: ellipsis;
183
+ }
184
+
185
+
186
+ /* changes start */
187
+
188
+ /* Add these rules to forcefully control table height */
189
+ .fixed-height-table {
190
+ height: 800px !important; /* Fixed height matching scrollHeight */
191
+ }
192
+
193
+ .fixed-height-table .p-datatable-wrapper {
194
+ height: calc(800px - 92px) !important; /* Subtract header and paginator height */
195
+ min-height: calc(800px - 92px) !important;
196
+ }
197
+
198
+ .fixed-height-table .p-datatable-table {
199
+ min-height: 800px !important; /* Force table to maintain minimum height */
200
+ }
201
+
202
+ /* Make sure the table body expands to fill available space */
203
+ .fixed-height-table .p-datatable-tbody {
204
+ min-height: 760px !important; /* Approximate calculation for body only */
205
+ }
206
+
207
+ /* Add an empty row to maintain height when filtered results are few */
208
+ .p-datatable-emptymessage td {
209
+ height: 760px !important;
210
+ }
211
+
212
+ .row-missing {
213
+ background-color: #00adef;
214
+ }
215
+
216
+ .p-paginator-page.p-paginator-page-selected {
217
+ background-color: #00adef !important;
218
+ color: white !important;
219
+ }
220
+
221
+ .header-content {
222
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
223
+ position: fixed;
224
+ z-index: 9999;
225
+ width: 100%;
226
+ left: 0;
227
+ margin: auto;
228
+ }
229
+
230
+ .content-wrapper {
231
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
232
+ top: 100px;
233
+ position: absolute;
234
+ width: -webkit-fill-available;
235
+ margin: 5px;
236
+ left: 0px;
237
+ height: 1000px !important;
238
+ }
239
+
240
+ .datatable-card {
241
+ padding-top: 0 !important;
242
+ padding-bottom: 1rem !important;
243
+ padding-left: 2rem;
244
+ padding-right: 2rem;
245
+ height: 1000px !important;
246
+ }
247
+
248
+ .p-multiselect-overlay {
249
+ background-color: #ffffff !important;
250
+ }
251
+
252
+ /* Hide the default checkbox that comes with PrimeVue */
253
+ .p-multiselect-option .p-checkbox {
254
+ display: none !important;
255
+ }
256
+
257
+ /* Make sure our custom checkbox is visible */
258
+ .custom-checkbox {
259
+ display: flex !important;
260
+ margin-right: 0.5rem;
261
+ }
262
+
263
+ /* Style for the checkbox container */
264
+ .custom-checkbox-box {
265
+ border: 1px solid #ced4da;
266
+ width: 18px;
267
+ height: 18px;
268
+ border-radius: 3px;
269
+ display: flex;
270
+ align-items: center;
271
+ justify-content: center;
272
+ background-color: #ffffff;
273
+ }
274
+
275
+ /* Style for selected checkbox */
276
+ .custom-checkbox-box.selected {
277
+ background-color: #2196F3;
278
+ border-color: #2196F3;
279
+ }
280
+
281
+ /* Style for the checkmark icon */
282
+ .custom-checkbox-icon {
283
+ color: white;
284
+ font-size: 12px;
285
+ }
286
+
287
+ .status {
288
+ display: flex;
289
+ align-items: center;
290
+ gap: 10px;
291
+ margin-left: 25px;
292
+ }
293
+
294
+ .status-with-icon {
295
+ display: flex;
296
+ align-items: center;
297
+ gap: 8px;
298
+ height: 50px;
299
+ }
300
+
301
+ .status-icon {
302
+ font-size: 24px;
303
+ width: 18px;
304
+ height: 18px;
305
+
306
+ }
307
+
308
+ .status-icon-wrapper {
309
+ border-radius: 6px;
310
+ width: 31px;
311
+ height: 31px;
312
+ display: flex;
313
+ align-items: center;
314
+ justify-content: center;
315
+ }
316
+
317
+ .status-text {
318
+ display: flex;
319
+ flex-direction: column;
320
+ justify-content: center;
321
+ height: 100%;
322
+ text-align: left;
323
+ }
324
+
325
+ .status-text .statBlockValue {
326
+ font-size: 14px;
327
+ line-height: 1.2;
328
+ font-weight: normal;
329
+ order: -1; /* This moves the value to the top */
330
+ }
331
+
332
+ .status-text .statBlockKey {
333
+ font-size: 12px;
334
+ line-height: 1.2;
335
+ }
336
+
337
+ /* Keep the original showing results item styling */
338
+ .statusItem:first-child {
339
+ display: flex;
340
+ align-items: center;
341
+ height: 40px;
342
+ }
343
+
344
+ .stat-percentage {
345
+ display: inline-block;
346
+ background-color: #e0e0e0;
347
+ color: #333;
348
+ border-radius: 4px;
349
+ padding: 2px 6px;
350
+ margin-left: 6px;
351
+ font-size: 0.85em;
352
+ font-weight: 500;
353
+ text-align: center;
354
+ }
355
+
356
+
357
+ /* responsive updates */
358
+
359
+
360
+ /* Base styles for the header */
361
+ .header {
362
+ display: flex;
363
+ flex-wrap: wrap;
364
+ gap: 15px;
365
+ align-items: center;
366
+ padding: 10px;
367
+ width: 100%;
368
+ }
369
+
370
+ /* Logo section */
371
+ .dividerRight {
372
+ flex: 0 0 auto;
373
+ min-width: 120px;
374
+ max-width: 180px;
375
+ border-right: 1px solid #d4d4d4;
376
+ padding-right: 20px;
377
+ height: 40px;
378
+ }
379
+
380
+ /* Status section */
381
+ .status {
382
+ display: flex;
383
+ flex-wrap: wrap;
384
+ gap: 10px;
385
+ flex: 1 1 auto;
386
+ justify-content: flex-start;
387
+ align-items: center;
388
+ margin: 0;
389
+ }
390
+
391
+ /* Individual status items */
392
+ .statusItem {
393
+ flex: 0 1 auto;
394
+ min-width: 150px;
395
+ margin: 0;
396
+ padding: 5px;
397
+ border-radius: 6px;
398
+ }
399
+
400
+ /* Styling for active filter */
401
+ .statusItem.active-filter {
402
+ background-color: rgba(0, 173, 239, 0.1);
403
+ border: 1px solid #00ADEF;
404
+ }
405
+
406
+ /* Cursor change to indicate clickable */
407
+ .statusItem:hover {
408
+ background-color: rgba(0, 173, 239, 0.05);
409
+ }
410
+
411
+ /* Action buttons section */
412
+ .actionButtons {
413
+ flex: 0 0 auto;
414
+ display: flex;
415
+ gap: 10px;
416
+ margin: 0;
417
+ }
418
+
419
+ /* Responsive breakpoints */
420
+ @media screen and (max-width: 1400px) {
421
+ .status {
422
+ justify-content: center;
423
+ }
424
+
425
+ .statusItem {
426
+ min-width: 140px;
427
+ }
428
+ }
429
+
430
+ @media screen and (max-width: 1200px) {
431
+ .header {
432
+ justify-content: center;
433
+ }
434
+
435
+ .dividerRight {
436
+ border-right: none;
437
+ padding-right: 0;
438
+ }
439
+
440
+ .actionButtons {
441
+ width: 100%;
442
+ justify-content: center;
443
+ }
444
+ }
445
+
446
+ @media screen and (max-width: 768px) {
447
+ .statusItem {
448
+ min-width: calc(50% - 20px);
449
+ }
450
+ }
451
+
452
+ @media screen and (max-width: 480px) {
453
+ .statusItem {
454
+ min-width: 100%;
455
+ }
456
+
457
+ .actionButtons {
458
+ flex-direction: column;
459
+ align-items: stretch;
460
+ }
461
+
462
+ .actionButtons .p-button {
463
+ margin: 5px 0;
464
+ }
465
+ }
466
+
467
+ /* Adjust the header content container */
468
+ .header-content {
469
+ position: fixed;
470
+ z-index: 9999;
471
+ width: 100%;
472
+ left: 0;
473
+ margin: auto;
474
+ padding: 0.8rem;
475
+ box-sizing: border-box;
476
+ max-height: 80vh;
477
+ overflow-y: auto;
478
+ }
479
+
480
+ .p-datatable-scrollable-body {
481
+ min-height: 576px !important;
482
+ }
483
+
484
+ /* Set consistent row heights */
485
+ .p-datatable .p-datatable-tbody>tr {
486
+ height: 48px !important;
487
+ min-height: 48px !important;
488
+ max-height: 48px !important;
489
+ }
490
+
491
+ /* Make sure content in cells doesn't expand the row */
492
+ .p-datatable .p-datatable-tbody>tr>td {
493
+ height: 48px !important;
494
+ padding: 0.5rem 1rem;
495
+ white-space: nowrap;
496
+ overflow: hidden;
497
+ text-overflow: ellipsis;
498
+ }
499
+
500
+ /* Ensure table takes minimum space when empty */
501
+ .p-datatable-empty-message {
502
+ height: 576px !important;
503
+ }