@beastmode-develeap/beastmode 0.1.285 → 0.1.287

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.
@@ -15,7 +15,7 @@
15
15
  }
16
16
  </script>
17
17
  <!--BOARD_DATA-->
18
- <script>window.__BUILD_STAMP__ = "20260516-174800-2440824";</script>
18
+ <script>window.__BUILD_STAMP__ = "20260516-192529-80821f8";</script>
19
19
  <link rel="preconnect" href="https://fonts.googleapis.com">
20
20
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
21
21
  <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
@@ -1259,6 +1259,9 @@ input[type="range"]::-webkit-slider-thumb {
1259
1259
  .card-status-age.status-age-info { color: var(--accent); background: var(--accent-subtle); }
1260
1260
  .card-status-age.status-age-warn { color: #fb923c; background: rgba(249, 115, 22, 0.15); }
1261
1261
  .card-status-age.status-age-stale { color: #f87171; background: rgba(239, 68, 68, 0.15); }
1262
+ .card-badge-wrap {
1263
+ line-height: 0;
1264
+ }
1262
1265
  .card-badge {
1263
1266
  display: inline-block;
1264
1267
  padding: 2px 8px;
@@ -6362,7 +6365,7 @@ function PipelineView({
6362
6365
  ${(() => {
6363
6366
  const cost = costsByItem && costsByItem[String(item.id)];
6364
6367
  const label = cost ? formatCost(cost.total_cost_usd) : null;
6365
- return label ? html`<span class="card-badge badge-cost" title=${'Total cost: ' + label}>${label}</span>` : null;
6368
+ return label ? html`<span class="card-badge-wrap"><span class="card-badge badge-cost" title=${'Total cost: ' + label}>${label}</span></span>` : null;
6366
6369
  })()}
6367
6370
  ${(() => {
6368
6371
  const env = item.extra && item.extra.current_env;
@@ -6779,8 +6782,7 @@ function BoardPage({ selectedProject }) {
6779
6782
  // append ?board=<proj> here. Errors are swallowed: if the cost
6780
6783
  // batch endpoint is unreachable, cards render without badges.
6781
6784
  const fetchCosts = useCallback(() => {
6782
- const proj = localStorage.getItem('beastmode-selected-project') || '';
6783
- const boardParam = (proj && proj !== 'all') ? '?board=' + encodeURIComponent(proj) : '';
6785
+ const boardParam = (selectedProject && selectedProject !== 'all') ? '?board=' + encodeURIComponent(selectedProject) : '';
6784
6786
  fetch('/api/costs/by-items' + boardParam)
6785
6787
  .then(r => r.ok ? r.json() : {})
6786
6788
  .then(data => setCostsByItem(data || {}))
@@ -7574,7 +7576,7 @@ function BoardPage({ selectedProject }) {
7574
7576
  ${(() => {
7575
7577
  const cost = costsByItem && costsByItem[String(item.id)];
7576
7578
  const label = cost ? formatCost(cost.total_cost_usd) : null;
7577
- return label ? html`<span class="card-badge badge-cost" title=${'Total cost: ' + label}>${label}</span>` : null;
7579
+ return label ? html`<span class="card-badge-wrap"><span class="card-badge badge-cost" title=${'Total cost: ' + label}>${label}</span></span>` : null;
7578
7580
  })()}
7579
7581
  ${(() => {
7580
7582
  const env = item.extra && item.extra.current_env;
@@ -1 +1 @@
1
- 24408242cd5d9e462deb310bcd8725e1f24cd414
1
+ 80821f87f8c8dde9c59429bd855ff5fadb5a17fb
@@ -1 +1 @@
1
- 20260516-174800-2440824
1
+ 20260516-192529-80821f8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beastmode-develeap/beastmode",
3
- "version": "0.1.285",
3
+ "version": "0.1.287",
4
4
  "description": "BeastMode Dark Factory — turn intent into verified software",
5
5
  "type": "module",
6
6
  "bin": {