@bitovi/vybit 0.4.7 → 0.4.8
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/overlay/dist/overlay.js +6 -0
- package/package.json +1 -1
- package/panel/dist/assets/{index-knh34eHL.js → index-2r5Abawu.js} +60 -60
- package/panel/dist/assets/index-CLQ2EbNt.css +1 -0
- package/panel/dist/index.html +2 -2
- package/server/app.ts +4 -2
- package/server/index.ts +43 -1
- package/server/mcp-tools.ts +29 -2
- package/server/queue.ts +21 -0
- package/panel/dist/assets/index-CsMFiOfM.css +0 -1
package/overlay/dist/overlay.js
CHANGED
|
@@ -2989,6 +2989,12 @@ ${pad}</${tag}>`;
|
|
|
2989
2989
|
currentEquivalentNodes.forEach((n) => highlightElement(n));
|
|
2990
2990
|
}
|
|
2991
2991
|
});
|
|
2992
|
+
window.addEventListener("scroll", () => {
|
|
2993
|
+
if (currentEquivalentNodes.length > 0) {
|
|
2994
|
+
shadowRoot.querySelectorAll(".highlight-overlay").forEach((el) => el.remove());
|
|
2995
|
+
currentEquivalentNodes.forEach((n) => highlightElement(n));
|
|
2996
|
+
}
|
|
2997
|
+
}, { capture: true, passive: true });
|
|
2992
2998
|
window.addEventListener("overlay-ws-connected", () => {
|
|
2993
2999
|
if (wasConnected) {
|
|
2994
3000
|
showToast("Reconnected");
|