@iroaxel/arcena 4.3.158 → 4.3.159
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.
|
@@ -90042,10 +90042,7 @@ function buildMetaSuffix(elapsedMs, thinkingMs, isThinking, tokenEstimate) {
|
|
|
90042
90042
|
}
|
|
90043
90043
|
var SHIMMER_WIDTH = 3;
|
|
90044
90044
|
var SHIMMER_INTERVAL = 100;
|
|
90045
|
-
var ShimmerText = ({ text, color
|
|
90046
|
-
const isBright = Math.abs(i - shimmerPos) <= SHIMMER_WIDTH;
|
|
90047
|
-
return (0, import_jsx_runtime18.jsx)(Text, { bold: isBright, color, dimColor: !isBright, children: char }, i);
|
|
90048
|
-
}) });
|
|
90045
|
+
var ShimmerText = ({ text, color }) => (0, import_jsx_runtime18.jsx)(Text, { color, bold: true, children: text });
|
|
90049
90046
|
var RETRY_REASON_LABELS = {
|
|
90050
90047
|
overloaded: "Provider overloaded",
|
|
90051
90048
|
rate_limit: "Rate limited",
|
|
@@ -91110,7 +91107,7 @@ function InputArea({ onSubmit, onAbort, disabled = false, isActive = true, onDow
|
|
|
91110
91107
|
const isCommand = value.startsWith("/");
|
|
91111
91108
|
const commandEndIndex = isCommand ? value.indexOf(" ") === -1 ? value.length : value.indexOf(" ") : 0;
|
|
91112
91109
|
const selection = getSelectionRange(selectionAnchor, cursor);
|
|
91113
|
-
return (0, import_jsx_runtime20.jsxs)(Box_default, { flexDirection: "column", width: columns, children: [(0, import_jsx_runtime20.jsxs)(Box_default, { flexDirection: "column", borderStyle: "round", borderColor: disabled ? theme.textDim :
|
|
91110
|
+
return (0, import_jsx_runtime20.jsxs)(Box_default, { flexDirection: "column", width: columns, children: [(0, import_jsx_runtime20.jsxs)(Box_default, { flexDirection: "column", borderStyle: "round", borderColor: disabled ? theme.textDim : theme.primary, paddingLeft: 1, paddingRight: 1, children: [scopeBadge && (0, import_jsx_runtime20.jsx)(Box_default, { marginBottom: 0, children: scopeBadge }), images.length > 0 && (0, import_jsx_runtime20.jsx)(Box_default, { children: (0, import_jsx_runtime20.jsx)(Text, { color: theme.accent, children: images.map((img, i) => img.kind === "text" ? `[File: ${img.fileName}]` : `[Image #${i + 1}]`).join(" ") }) }), (() => {
|
|
91114
91111
|
if (pasteText && value) {
|
|
91115
91112
|
const pasteLineCount = pasteText.split("\n").length;
|
|
91116
91113
|
const indicator = `[Pasted text #${pasteText.length} +${pasteLineCount} lines]`;
|
|
@@ -94594,4 +94591,4 @@ react/cjs/react-jsx-runtime.development.js:
|
|
|
94594
94591
|
* LICENSE file in the root directory of this source tree.
|
|
94595
94592
|
*)
|
|
94596
94593
|
*/
|
|
94597
|
-
//# sourceMappingURL=chunk-
|
|
94594
|
+
//# sourceMappingURL=chunk-3OUGQLYU.js.map
|