botholomew 0.15.2 → 0.15.3
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/package.json
CHANGED
|
@@ -400,7 +400,7 @@ function ContextDetailHeader({
|
|
|
400
400
|
indexLoaded: boolean;
|
|
401
401
|
}) {
|
|
402
402
|
return (
|
|
403
|
-
<Box flexDirection="column">
|
|
403
|
+
<Box flexDirection="column" width="100%" backgroundColor={theme.headerBg}>
|
|
404
404
|
<Box>
|
|
405
405
|
<Text bold color="cyan" wrap="truncate-end">
|
|
406
406
|
{entry.is_directory ? "📁" : "📄"} context/{entry.path}
|
|
@@ -441,9 +441,6 @@ function ContextDetailHeader({
|
|
|
441
441
|
</Box>
|
|
442
442
|
</>
|
|
443
443
|
)}
|
|
444
|
-
<Box>
|
|
445
|
-
<Text dimColor>{"─".repeat(2)}</Text>
|
|
446
|
-
</Box>
|
|
447
444
|
</Box>
|
|
448
445
|
);
|
|
449
446
|
}
|
|
@@ -348,7 +348,7 @@ export const SchedulePanel = memo(function SchedulePanel({
|
|
|
348
348
|
function ScheduleDetailHeader({ schedule }: { schedule: Schedule }) {
|
|
349
349
|
const enabledKey = String(schedule.enabled);
|
|
350
350
|
return (
|
|
351
|
-
<Box flexDirection="column">
|
|
351
|
+
<Box flexDirection="column" width="100%" backgroundColor={theme.headerBg}>
|
|
352
352
|
<Box>
|
|
353
353
|
<Text bold color={theme.info} wrap="truncate-end">
|
|
354
354
|
{schedule.name}
|
|
@@ -367,9 +367,6 @@ function ScheduleDetailHeader({ schedule }: { schedule: Schedule }) {
|
|
|
367
367
|
</Text>
|
|
368
368
|
</Text>
|
|
369
369
|
</Box>
|
|
370
|
-
<Box>
|
|
371
|
-
<Text dimColor>{"─".repeat(2)}</Text>
|
|
372
|
-
</Box>
|
|
373
370
|
</Box>
|
|
374
371
|
);
|
|
375
372
|
}
|
|
@@ -385,7 +385,7 @@ export const TaskPanel = memo(function TaskPanel({
|
|
|
385
385
|
|
|
386
386
|
function TaskDetailHeader({ task }: { task: Task }) {
|
|
387
387
|
return (
|
|
388
|
-
<Box flexDirection="column">
|
|
388
|
+
<Box flexDirection="column" width="100%" backgroundColor={theme.headerBg}>
|
|
389
389
|
<Box>
|
|
390
390
|
<Text bold color={theme.info} wrap="truncate-end">
|
|
391
391
|
{task.name}
|
|
@@ -408,9 +408,6 @@ function TaskDetailHeader({ task }: { task: Task }) {
|
|
|
408
408
|
</Text>
|
|
409
409
|
</Text>
|
|
410
410
|
</Box>
|
|
411
|
-
<Box>
|
|
412
|
-
<Text dimColor>{"─".repeat(2)}</Text>
|
|
413
|
-
</Box>
|
|
414
411
|
</Box>
|
|
415
412
|
);
|
|
416
413
|
}
|
|
@@ -591,7 +591,7 @@ function ThreadDetailHeader({
|
|
|
591
591
|
isActiveThread: boolean;
|
|
592
592
|
}) {
|
|
593
593
|
return (
|
|
594
|
-
<Box flexDirection="column">
|
|
594
|
+
<Box flexDirection="column" width="100%" backgroundColor={theme.headerBg}>
|
|
595
595
|
<Box>
|
|
596
596
|
<Text wrap="truncate-end">
|
|
597
597
|
<Text bold italic color={theme.info}>
|
|
@@ -625,9 +625,6 @@ function ThreadDetailHeader({
|
|
|
625
625
|
</Text>
|
|
626
626
|
</Text>
|
|
627
627
|
</Box>
|
|
628
|
-
<Box>
|
|
629
|
-
<Text dimColor>{"─".repeat(2)}</Text>
|
|
630
|
-
</Box>
|
|
631
628
|
</Box>
|
|
632
629
|
);
|
|
633
630
|
}
|
package/src/tui/theme.ts
CHANGED