@blockrun/franklin 3.15.33 → 3.15.34
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/ui/app.js +19 -2
- package/package.json +1 -1
package/dist/ui/app.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
2
|
/**
|
|
3
3
|
* RunCode ink-based terminal UI.
|
|
4
4
|
* Real-time streaming, thinking animation, tool progress, slash commands.
|
|
@@ -84,7 +84,24 @@ function InputBox({ input, setInput, onSubmit, model, balance, chain, walletTail
|
|
|
84
84
|
const leadingGlyph = (awaitingApproval || awaitingAnswer)
|
|
85
85
|
? _jsx(Text, { color: "yellow", bold: true, children: "\u26A0 " })
|
|
86
86
|
: (showSpinner ? _jsxs(Text, { color: "yellow", children: [_jsx(Spinner, { type: "dots" }), " "] }) : null);
|
|
87
|
-
return (_jsxs(Box, { flexDirection: "column", marginTop: 1, children: [_jsxs(Box, { borderStyle: "round", borderColor: borderColor, borderDimColor: !borderColor, paddingX: 1, width: boxWidth, children: [leadingGlyph, _jsx(Box, { flexGrow: 1, children: vimMode ? (_jsx(VimInput, { value: input, onChange: setInput, onSubmit: onSubmit, placeholder: placeholder, focus: focused !== false, showMode: true, onModeChange: onVimModeChange })) : (_jsx(TextInput, { value: input, onChange: setInput, onSubmit: onSubmit, placeholder: placeholder, focus: focused !== false })) })] }), _jsx(Box, { marginLeft: 2, children: _jsxs(Text, { dimColor: true, children: [busy ? _jsx(Text, { color: "yellow", children: _jsx(Spinner, { type: "dots" }) }) : null, busy ? ' ' : '', shortModelName(model), " \u00B7 ",
|
|
87
|
+
return (_jsxs(Box, { flexDirection: "column", marginTop: 1, children: [_jsxs(Box, { borderStyle: "round", borderColor: borderColor, borderDimColor: !borderColor, paddingX: 1, width: boxWidth, children: [leadingGlyph, _jsx(Box, { flexGrow: 1, children: vimMode ? (_jsx(VimInput, { value: input, onChange: setInput, onSubmit: onSubmit, placeholder: placeholder, focus: focused !== false, showMode: true, onModeChange: onVimModeChange })) : (_jsx(TextInput, { value: input, onChange: setInput, onSubmit: onSubmit, placeholder: placeholder, focus: focused !== false })) })] }), _jsx(Box, { marginLeft: 2, children: _jsxs(Text, { dimColor: true, children: [busy ? _jsx(Text, { color: "yellow", children: _jsx(Spinner, { type: "dots" }) }) : null, busy ? ' ' : '', shortModelName(model), " \u00B7 ", (() => {
|
|
88
|
+
// Color the balance by funding state. Real session 2026-05-04
|
|
89
|
+
// had a user staring at "$0.08 USDC" in dim text wondering
|
|
90
|
+
// whether it meant "out of money" or "wrong chain". Make
|
|
91
|
+
// low/critical balances unmistakable. Thresholds match the
|
|
92
|
+
// ~$0.10 / ~$0.50 ranges where a typical Opus turn ($0.08–
|
|
93
|
+
// $0.15) tips over: <$0.50 = red bold + low hint;
|
|
94
|
+
// <$1.00 = yellow; otherwise plain dim.
|
|
95
|
+
const m = balance.match(/\$([\d.]+)/);
|
|
96
|
+
const num = m ? parseFloat(m[1]) : null;
|
|
97
|
+
if (num !== null && num < 0.50) {
|
|
98
|
+
return _jsxs(_Fragment, { children: [_jsx(Text, { color: "red", bold: true, children: balance }), _jsx(Text, { color: "red", children: " \u26A0 low \u2014 fund wallet or /model free" })] });
|
|
99
|
+
}
|
|
100
|
+
if (num !== null && num < 1.00) {
|
|
101
|
+
return _jsx(Text, { color: "yellow", children: balance });
|
|
102
|
+
}
|
|
103
|
+
return balance;
|
|
104
|
+
})(), chain ? _jsxs(Text, { children: [" \u00B7 ", _jsx(Text, { color: "magenta", children: chain }), walletTail ? _jsxs(Text, { dimColor: true, children: [":", walletTail] }) : ''] }) : '', sessionCost > 0.00001 ? _jsxs(Text, { color: "yellow", children: [" -$", sessionCost.toFixed(4)] }) : '', contextPct !== undefined && contextPct > 0 ? (() => {
|
|
88
105
|
// Visual context bar: ▓▓▓▓▓▓░░░░ 75%
|
|
89
106
|
const filled = Math.round(contextPct / 10);
|
|
90
107
|
const empty = 10 - filled;
|
package/package.json
CHANGED