@nomad-e/bluma-cli 0.0.105 → 0.0.106
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/main.js
CHANGED
|
@@ -172,20 +172,13 @@ import { Box as Box16, Text as Text15, Static } from "ink";
|
|
|
172
172
|
import { Box, Text } from "ink";
|
|
173
173
|
import { memo } from "react";
|
|
174
174
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
175
|
-
var VERSION = "0.0.103";
|
|
176
175
|
var HeaderComponent = ({
|
|
177
176
|
sessionId: sessionId2,
|
|
178
177
|
workdir
|
|
179
178
|
}) => {
|
|
180
179
|
const dirName = workdir.split("/").pop() || workdir;
|
|
181
180
|
return /* @__PURE__ */ jsxs(Box, { flexDirection: "column", marginBottom: 1, children: [
|
|
182
|
-
/* @__PURE__ */
|
|
183
|
-
/* @__PURE__ */ jsx(Text, { color: "magenta", bold: true, children: "bluma \u2014 coding agent" }),
|
|
184
|
-
/* @__PURE__ */ jsxs(Text, { dimColor: true, children: [
|
|
185
|
-
" ",
|
|
186
|
-
VERSION
|
|
187
|
-
] })
|
|
188
|
-
] }),
|
|
181
|
+
/* @__PURE__ */ jsx(Box, { children: /* @__PURE__ */ jsx(Text, { color: "magenta", bold: true, children: "bluma \u2014 coding agent" }) }),
|
|
189
182
|
/* @__PURE__ */ jsxs(Box, { children: [
|
|
190
183
|
/* @__PURE__ */ jsx(Text, { dimColor: true, children: "cwd " }),
|
|
191
184
|
/* @__PURE__ */ jsx(Text, { color: "cyan", children: dirName }),
|
|
@@ -741,7 +734,7 @@ var TextLine = memo2(({
|
|
|
741
734
|
const after = line.slice(cursorCol + 1);
|
|
742
735
|
return /* @__PURE__ */ jsxs2(Text2, { children: [
|
|
743
736
|
before,
|
|
744
|
-
/* @__PURE__ */ jsx2(Text2, { inverse: true, color: "
|
|
737
|
+
/* @__PURE__ */ jsx2(Text2, { inverse: true, color: "white", children: char }),
|
|
745
738
|
after
|
|
746
739
|
] });
|
|
747
740
|
}, (prev, next) => {
|