@zolomedia/bifrost-client 1.7.83 → 1.7.85
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.85",
|
|
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
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
* Apps re-skin the whole chrome by redefining these once. */
|
|
39
39
|
--ink: #f9fafb; /* primary text on dark */
|
|
40
40
|
--ink-muted: rgba(255, 255, 255, 0.65); /* secondary / captions */
|
|
41
|
+
--ink-faint: rgba(255, 255, 255, 0.45); /* placeholders / hints */
|
|
41
42
|
--surface-1: rgba(255, 255, 255, 0.04); /* raised panel */
|
|
42
43
|
--surface-2: rgba(255, 255, 255, 0.08); /* input / hover fill */
|
|
43
44
|
--border: rgba(255, 255, 255, 0.12); /* hairline divider */
|
|
@@ -287,7 +288,7 @@ input.zInput, textarea.zInput, select.zInput {
|
|
|
287
288
|
}
|
|
288
289
|
|
|
289
290
|
.zForm-control::placeholder,
|
|
290
|
-
.zInput::placeholder { color: var(--zinput-placeholder,
|
|
291
|
+
.zInput::placeholder { color: var(--zinput-placeholder, var(--ink-faint)); }
|
|
291
292
|
|
|
292
293
|
.zForm-control:focus,
|
|
293
294
|
input.zInput:focus, textarea.zInput:focus, select.zInput:focus {
|
|
@@ -322,7 +323,7 @@ select.zForm-control, select.zInput { cursor: pointer; }
|
|
|
322
323
|
|
|
323
324
|
/* Required-field marker — red asterisk suffix on the label (SSOT). */
|
|
324
325
|
.zRequired {
|
|
325
|
-
color: var(--zrequired-color,
|
|
326
|
+
color: var(--zrequired-color, var(--color-error));
|
|
326
327
|
margin-left: 0.15rem;
|
|
327
328
|
font-weight: 600;
|
|
328
329
|
}
|
|
@@ -335,7 +336,7 @@ input[type="file"].zInput {
|
|
|
335
336
|
width: 100%;
|
|
336
337
|
padding: 0.5rem 0.65rem;
|
|
337
338
|
font-size: 0.9375rem;
|
|
338
|
-
color: var(--zinput-placeholder,
|
|
339
|
+
color: var(--zinput-placeholder, var(--ink-muted));
|
|
339
340
|
line-height: 1.6;
|
|
340
341
|
cursor: pointer;
|
|
341
342
|
}
|
|
@@ -594,7 +595,7 @@ select.zForm-control[multiple] option:checked {
|
|
|
594
595
|
background: linear-gradient(var(--color-primary), var(--color-primary));
|
|
595
596
|
}
|
|
596
597
|
select.zSelect[multiple] option:disabled,
|
|
597
|
-
select.zForm-control[multiple] option:disabled { color: var(--zinput-placeholder,
|
|
598
|
+
select.zForm-control[multiple] option:disabled { color: var(--zinput-placeholder, var(--ink-faint)); }
|
|
598
599
|
|
|
599
600
|
/* size variants */
|
|
600
601
|
select.zSelect.zSelect-lg { padding-top: 0.7rem; padding-bottom: 0.7rem; font-size: 1.05rem; }
|
|
@@ -614,7 +615,9 @@ zBifrostBadge {
|
|
|
614
615
|
.zBadge-success { color: var(--color-success); }
|
|
615
616
|
.zBadge-error { color: var(--color-error); }
|
|
616
617
|
.zBadge-dot { border-radius: 50%; background: currentColor; }
|
|
617
|
-
|
|
618
|
+
/* Inline SVG sprite icon (e.g. the connection/dev badge dot). Named zSvgIcon to
|
|
619
|
+
* stay distinct from the zIcon EVENT, which renders a Bootstrap <i class="bi">. */
|
|
620
|
+
.zSvgIcon { display: inline-block; width: 0.75em; height: 0.75em; fill: currentColor; }
|
|
618
621
|
|
|
619
622
|
/* ─── zVaF content host ─────────────────────────────────────────────────────── */
|
|
620
623
|
/* The re-rendered subtree under the <zVaF> root. Chrome (navbar/badge/errors) are
|
|
@@ -1648,7 +1651,7 @@ zNavBar .zNav-link.active {
|
|
|
1648
1651
|
margin-bottom: 0.4rem;
|
|
1649
1652
|
}
|
|
1650
1653
|
.zProgress-container .zFw-bold { font-weight: 600; color: var(--zprogress-label, var(--ink)); }
|
|
1651
|
-
.zProgress-container .zText-muted { color: var(--zprogress-info,
|
|
1654
|
+
.zProgress-container .zText-muted { color: var(--zprogress-info, var(--ink-muted)); }
|
|
1652
1655
|
|
|
1653
1656
|
/* Track — the rail behind the fill. Inset shadow gives the pill real depth. */
|
|
1654
1657
|
.zProgress {
|