@zcy2nn/agent-forge 1.0.5 → 1.0.6
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 +14 -0
- package/package.json +1 -1
package/dist/tui.js
CHANGED
|
@@ -236,6 +236,20 @@ var plugin = {
|
|
|
236
236
|
api.slots.register({
|
|
237
237
|
order: 900,
|
|
238
238
|
slots: {
|
|
239
|
+
home_prompt_right(_ctx, _props) {
|
|
240
|
+
return box({
|
|
241
|
+
flexDirection: "row",
|
|
242
|
+
alignItems: "center",
|
|
243
|
+
gap: 1
|
|
244
|
+
}, [
|
|
245
|
+
box({
|
|
246
|
+
paddingLeft: 1,
|
|
247
|
+
paddingRight: 1,
|
|
248
|
+
backgroundColor: api.theme.current.accent
|
|
249
|
+
}, [text({ fg: api.theme.current.background }, ["AGF"])]),
|
|
250
|
+
text({ fg: api.theme.current.textMuted }, [`v${version}`])
|
|
251
|
+
]);
|
|
252
|
+
},
|
|
239
253
|
sidebar_content(_ctx, _props) {
|
|
240
254
|
return renderSidebar(snapshot, version, api.theme.current);
|
|
241
255
|
}
|
package/package.json
CHANGED