@dylanrussell/agent-router 1.0.1 → 1.0.2
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/dist/tui.js +2 -1
- package/dist/tui.js.map +1 -1
- package/package.json +1 -1
package/dist/tui.js
CHANGED
|
@@ -15392,6 +15392,7 @@ function createSidebarPoller(options) {
|
|
|
15392
15392
|
}
|
|
15393
15393
|
|
|
15394
15394
|
// src/tui/view.ts
|
|
15395
|
+
var TEXT_ATTR_BOLD = 1;
|
|
15395
15396
|
function text(content, props = {}) {
|
|
15396
15397
|
return { kind: "text", props, text: content };
|
|
15397
15398
|
}
|
|
@@ -15401,7 +15402,7 @@ function restartRequired(snapshot, ctx) {
|
|
|
15401
15402
|
function buildSidebarNodes(snapshot, ctx) {
|
|
15402
15403
|
const theme = ctx.theme ?? {};
|
|
15403
15404
|
const nodes = [
|
|
15404
|
-
text("
|
|
15405
|
+
text("Agent Stack", { fg: theme.text, attributes: TEXT_ATTR_BOLD }),
|
|
15405
15406
|
text(` \u25A3 ${snapshot.active ?? "(none)"}`, { fg: theme.success })
|
|
15406
15407
|
];
|
|
15407
15408
|
if (restartRequired(snapshot, ctx)) {
|