@bitpoolos/edge-bacnet 1.5.2 → 1.6.0
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 +151 -1
- package/bacnet_client.js +202 -108
- package/bacnet_device.js +3 -1
- package/bacnet_gateway.html +100 -2
- package/bacnet_gateway.js +382 -250
- package/bacnet_inspector.html +43 -0
- package/bacnet_inspector.js +1564 -0
- package/bacnet_inspector_worker.js +535 -0
- package/bacnet_read.html +47 -50
- package/bacnet_read.js +0 -3
- package/common.js +201 -38
- package/inspector.html +460 -0
- package/package.json +6 -2
- package/resources/Logo_Simplified_Positive.svg +32 -0
- package/resources/downloadAsHtml.js +654 -0
- package/resources/icons/device-id-change-icon.svg +4 -0
- package/resources/icons/device-id-conflict-icon.svg +4 -0
- package/resources/icons/favicon.ico +0 -0
- package/resources/icons/points-error-icon.svg +4 -0
- package/resources/icons/points-missing-icon.svg +4 -0
- package/resources/icons/points-ok-icon.svg +4 -0
- package/resources/icons/points-unmapped-icon.svg +5 -0
- package/resources/icons/points-warning-icon.svg +4 -0
- package/resources/inspector.css +25312 -0
- package/resources/inspectorStyle.css +254 -0
- package/resources/inspectorStyles.css +478 -0
- package/resources/node-bacstack-ts/dist/lib/client.js +7 -3
- package/resources/primevue.min.js +1 -0
- package/resources/style.css +17 -1
- package/resources/vue3513.global.prod.js +9 -0
- package/ssrHtmlExporter.js +535 -0
- package/treeBuilder.js +3 -3
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M6.125 9.69876L8.375 11.9488L12.875 7.44876M17 9.69876C17 13.8409 13.6421 17.1988 9.5 17.1988C5.35786 17.1988 2 13.8409 2 9.69876C2 5.55663 5.35786 2.19876 9.5 2.19876C13.6421 2.19876 17 5.55663 17 9.69876Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M9.5 10.4488C10.7426 10.4488 11.75 9.4414 11.75 8.19876C11.75 6.95612 10.7426 5.94876 9.5 5.94876C8.25736 5.94876 7.25 6.95612 7.25 8.19876C7.25 9.4414 8.25736 10.4488 9.5 10.4488Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M9.5 17.1988C12.5 14.1988 15.5 11.5125 15.5 8.19876C15.5 4.88505 12.8137 2.19876 9.5 2.19876C6.18629 2.19876 3.5 4.88505 3.5 8.19876C3.5 11.5125 6.5 14.1988 9.5 17.1988Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M9.49982 7.44875V10.4488M9.49982 13.4488H9.50732M8.4613 3.61754L2.29264 14.2725C1.95049 14.8635 1.77941 15.159 1.80469 15.4015C1.82675 15.6131 1.93758 15.8053 2.10959 15.9304C2.30681 16.0738 2.64826 16.0738 3.33115 16.0738H15.6685C16.3514 16.0738 16.6928 16.0738 16.89 15.9304C17.0621 15.8053 17.1729 15.6131 17.1949 15.4015C17.2202 15.159 17.0491 14.8635 16.707 14.2725L10.5383 3.61754C10.1974 3.02867 10.0269 2.73423 9.80454 2.63534C9.61055 2.54908 9.38908 2.54908 9.19509 2.63534C8.97269 2.73423 8.80223 3.02867 8.4613 3.61754Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|