@zolomedia/bifrost-client 1.7.85 → 1.7.86

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.86",
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