@zolomedia/bifrost-client 1.7.85 → 1.7.87

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zolomedia/bifrost-client",
3
- "version": "1.7.85",
3
+ "version": "1.7.87",
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": {
@@ -329,7 +329,7 @@ select.zForm-control, select.zInput { cursor: pointer; }
329
329
  }
330
330
 
331
331
  /* File selector — native file inputs (emitted as .zForm-control) styled to match
332
- the theme: muted "no file" text + an indigo pill for the browse button. */
332
+ the theme: muted "no file" text + a secondary-token pill for the browse button. */
333
333
  input[type="file"].zForm-control,
334
334
  input[type="file"].zInput {
335
335
  display: block;
@@ -400,14 +400,21 @@ input[type="month"].zForm-control::-webkit-calendar-picker-indicator,
400
400
  input[type="week"].zForm-control::-webkit-calendar-picker-indicator,
401
401
  input[type="date"].zInput::-webkit-calendar-picker-indicator,
402
402
  input[type="time"].zInput::-webkit-calendar-picker-indicator,
403
- input[type="datetime-local"].zInput::-webkit-calendar-picker-indicator {
403
+ input[type="datetime-local"].zInput::-webkit-calendar-picker-indicator,
404
+ input[type="month"].zInput::-webkit-calendar-picker-indicator,
405
+ input[type="week"].zInput::-webkit-calendar-picker-indicator {
404
406
  filter: var(--zinput-picker-filter, invert(0.85));
405
407
  opacity: 0.75;
406
408
  cursor: pointer;
407
409
  }
408
410
  input[type="date"].zForm-control::-webkit-calendar-picker-indicator:hover,
409
411
  input[type="time"].zForm-control::-webkit-calendar-picker-indicator:hover,
410
- input[type="datetime-local"].zForm-control::-webkit-calendar-picker-indicator:hover {
412
+ input[type="datetime-local"].zForm-control::-webkit-calendar-picker-indicator:hover,
413
+ input[type="month"].zForm-control::-webkit-calendar-picker-indicator:hover,
414
+ input[type="week"].zForm-control::-webkit-calendar-picker-indicator:hover,
415
+ input[type="date"].zInput::-webkit-calendar-picker-indicator:hover,
416
+ input[type="time"].zInput::-webkit-calendar-picker-indicator:hover,
417
+ input[type="datetime-local"].zInput::-webkit-calendar-picker-indicator:hover {
411
418
  opacity: 1;
412
419
  }
413
420
 
@@ -1144,12 +1151,15 @@ zNavBar .zNav-link.active {
1144
1151
  /* Base button structural (no colors — app/theme sets those) */
1145
1152
  .zBtn {
1146
1153
  display: inline-block;
1154
+ box-sizing: border-box;
1147
1155
  cursor: pointer;
1148
1156
  text-align: center;
1149
1157
  white-space: nowrap;
1150
1158
  vertical-align: middle;
1151
1159
  user-select: none;
1152
1160
  border: 1px solid transparent;
1161
+ border-radius: 980px;
1162
+ letter-spacing: -0.01em;
1153
1163
  text-decoration: none;
1154
1164
  }
1155
1165
  .zBtn:focus { outline: 2px solid color-mix(in srgb, var(--color-primary) 55%, transparent); outline-offset: 2px; }
@@ -1164,28 +1174,29 @@ zNavBar .zNav-link.active {
1164
1174
  display: inline-flex;
1165
1175
  align-items: center;
1166
1176
  justify-content: center;
1167
- gap: 0.4rem;
1168
- padding: 0.55rem 1.25rem;
1177
+ gap: 0.45rem;
1178
+ padding: 0.7rem 1.5rem;
1169
1179
  border: none;
1170
- border-radius: 9px;
1180
+ border-radius: 980px;
1171
1181
  font-family: inherit;
1172
- font-size: 0.9rem;
1182
+ font-size: 0.95rem;
1173
1183
  font-weight: 600;
1174
1184
  line-height: 1.4;
1185
+ letter-spacing: -0.01em;
1175
1186
  cursor: pointer;
1176
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
1187
+ box-shadow: 0 4px 14px var(--shadow);
1177
1188
  transition: filter 0.15s ease, transform 0.08s ease, box-shadow 0.15s ease;
1178
1189
  }
1179
1190
  .zBtn-primary:hover, .zBtn-secondary:hover, .zBtn-success:hover,
1180
1191
  .zBtn-danger:hover, .zBtn-warning:hover, .zBtn-info:hover {
1181
1192
  filter: brightness(1.06);
1182
- transform: translateY(-1px);
1183
- box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
1193
+ transform: translateY(-2px);
1194
+ box-shadow: 0 8px 22px var(--shadow);
1184
1195
  }
1185
1196
  .zBtn-primary:active, .zBtn-secondary:active, .zBtn-success:active,
1186
1197
  .zBtn-danger:active, .zBtn-warning:active, .zBtn-info:active {
1187
1198
  transform: translateY(0);
1188
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
1199
+ box-shadow: 0 2px 6px var(--shadow);
1189
1200
  }
1190
1201
  .zBtn-primary:disabled, .zBtn-secondary:disabled, .zBtn-success:disabled,
1191
1202
  .zBtn-danger:disabled, .zBtn-warning:disabled, .zBtn-info:disabled {
@@ -1211,8 +1222,8 @@ zNavBar .zNav-link.active {
1211
1222
  /* Size + outline + group variants — emitted by the renderer (e.g. the zTable
1212
1223
  * paging control bar). Outline buttons keep the base box model and only swap the
1213
1224
  * skin (transparent fill, token-tinted text/border). */
1214
- .zBtn-sm { padding: 0.32rem 0.7rem; font-size: 0.82rem; border-radius: 7px; }
1215
- .zBtn-lg { padding: 0.8rem 1.8rem; font-size: 1.05rem; border-radius: 11px; }
1225
+ .zBtn-sm { padding: 0.4rem 0.95rem; font-size: 0.82rem; border-radius: 980px; }
1226
+ .zBtn-lg { padding: 0.95rem 2.2rem; font-size: 1.05rem; border-radius: 980px; }
1216
1227
 
1217
1228
  .zBtn-outline-primary,
1218
1229
  .zBtn-outline-secondary,