@zolomedia/bifrost-client 1.7.83 → 1.7.84
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.
|
@@ -154,7 +154,7 @@ export class ZVaFManager {
|
|
|
154
154
|
// Set initial badge content (will be updated by connection hooks)
|
|
155
155
|
this.client._zConnectionBadge.className = 'zConnection zBadge zBadge-connection zBadge-pending';
|
|
156
156
|
this.client._zConnectionBadge.innerHTML = `
|
|
157
|
-
<svg class="
|
|
157
|
+
<svg class="zSvgIcon zBadge-dot" aria-hidden="true">
|
|
158
158
|
<use xlink:href="#icon-circle-fill"></use>
|
|
159
159
|
</svg>
|
|
160
160
|
<span class="zBadge-text">Connecting...</span>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zolomedia/bifrost-client",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.84",
|
|
4
4
|
"description": "Browser client for zBifrost — the WebSocket bridge that turns JSON events from a zOS server into live DOM. Thin bootstrap + server-controlled core.",
|
|
5
5
|
"homepage": "https://github.com/ZoloAi/zbifrost-client#readme",
|
|
6
6
|
"repository": {
|
package/zSys/theme/zbase.css
CHANGED
|
@@ -614,7 +614,9 @@ zBifrostBadge {
|
|
|
614
614
|
.zBadge-success { color: var(--color-success); }
|
|
615
615
|
.zBadge-error { color: var(--color-error); }
|
|
616
616
|
.zBadge-dot { border-radius: 50%; background: currentColor; }
|
|
617
|
-
|
|
617
|
+
/* Inline SVG sprite icon (e.g. the connection/dev badge dot). Named zSvgIcon to
|
|
618
|
+
* stay distinct from the zIcon EVENT, which renders a Bootstrap <i class="bi">. */
|
|
619
|
+
.zSvgIcon { display: inline-block; width: 0.75em; height: 0.75em; fill: currentColor; }
|
|
618
620
|
|
|
619
621
|
/* ─── zVaF content host ─────────────────────────────────────────────────────── */
|
|
620
622
|
/* The re-rendered subtree under the <zVaF> root. Chrome (navbar/badge/errors) are
|