@atolis-hq/wake 0.2.87 → 0.2.89

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.
@@ -53,7 +53,7 @@ export const indexHtml = `<!DOCTYPE html>
53
53
  .pill-needs-human { background: #4a3510; color: #ffcf7f; }
54
54
  .pill-error { background: #3d1f1f; color: #ff8f7f; }
55
55
  .pill-finished { background: #252830; color: #9aa2ad; }
56
- .pill-frozen { background: #5c2a11; color: #ffd7a3; border: 1px solid #ff9f43; }
56
+ .pill-frozen { background: #102a43; color: #9bd8ff; border: 1px solid #38bdf8; }
57
57
  nav { display: flex; gap: 0.25rem; padding: 0.4rem 1rem 0 0.3rem; background: var(--brand-darker); border-bottom: 1px solid #2c313a; }
58
58
  nav button { background: none; border: none; border-bottom: 2px solid transparent; color: rgba(255, 255, 255, 0.65); padding: 0.4rem 0.7rem 0.45rem; margin-bottom: -1px; cursor: pointer; font-size: 0.85rem; transition: color 0.12s ease; }
59
59
  nav button:hover { color: #fff; }
@@ -448,10 +448,10 @@ function renderCardSummaryNodes(item) {
448
448
  }
449
449
  return [
450
450
  el('div', { class: 'meta', style: 'display:flex;align-items:center;gap:0.3rem;flex-wrap:wrap;margin-top:0.2rem;' }, metaPills),
451
- el('div', { class: 'card-stats', text: statsText }),
452
451
  ...(nonWakeLabels.length > 0
453
452
  ? [el('div', { class: 'meta', style: 'margin-top:0.2rem;' }, nonWakeLabels.map((label) => el('span', { class: 'chip chip-label', text: label })))]
454
453
  : []),
454
+ el('div', { class: 'card-stats', text: statsText }),
455
455
  ...(item.activeMainRun ? [renderChildRun(item.activeMainRun)] : []),
456
456
  ...((item.activeChildRuns || []).map(renderChildRun)),
457
457
  ];
@@ -124,4 +124,4 @@ export function resolveWakeVersion(options = {}) {
124
124
  }
125
125
  return '0.1.0-dev';
126
126
  }
127
- export const wakeVersion = "g48415cd";
127
+ export const wakeVersion = "g3780e92";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atolis-hq/wake",
3
- "version": "0.2.87",
3
+ "version": "0.2.89",
4
4
  "description": "Local autonomous agent control plane for software development",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {