@nomad-e/bluma-cli 0.0.100 → 0.0.101
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 +2 -9
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -3583,19 +3583,12 @@ var renderTodoTool2 = ({ args }) => {
|
|
|
3583
3583
|
/* @__PURE__ */ jsx8(Text8, { dimColor: true, children: " todo" })
|
|
3584
3584
|
] }),
|
|
3585
3585
|
/* @__PURE__ */ jsxs8(Box8, { paddingLeft: 2, flexDirection: "column", children: [
|
|
3586
|
-
/* @__PURE__ */ jsxs8(Text8, { color: "cyan", children: [
|
|
3587
|
-
"\u{1F4CB} ",
|
|
3588
|
-
pending,
|
|
3589
|
-
" pending, ",
|
|
3590
|
-
completed,
|
|
3591
|
-
" completed"
|
|
3592
|
-
] }),
|
|
3593
3586
|
tasks.length > 0 && tasks.length <= 10 && /* @__PURE__ */ jsx8(Box8, { paddingLeft: 2, flexDirection: "column", marginTop: 1, children: tasks.map((task, idx) => {
|
|
3594
3587
|
const isComplete = task.isComplete === true;
|
|
3595
|
-
const checkbox = isComplete ? "[
|
|
3588
|
+
const checkbox = isComplete ? "[x]" : "[ ]";
|
|
3596
3589
|
const description = task.description || "No description";
|
|
3597
3590
|
const displayText = description.length > 60 ? description.substring(0, 57) + "..." : description;
|
|
3598
|
-
const color = isComplete ? "
|
|
3591
|
+
const color = isComplete ? "gray" : "yellow";
|
|
3599
3592
|
return /* @__PURE__ */ jsxs8(
|
|
3600
3593
|
Text8,
|
|
3601
3594
|
{
|