@kolisachint/hoocode-agent 0.5.61 → 0.5.63
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/CHANGELOG.md +76 -0
- package/dist/extensions/core/learn.d.ts.map +1 -1
- package/dist/extensions/core/learn.js +202 -134
- package/dist/extensions/core/learn.js.map +1 -1
- package/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/branch-summary-message.js +3 -2
- package/dist/modes/interactive/components/branch-summary-message.js.map +1 -1
- package/dist/modes/interactive/components/compaction-summary-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/compaction-summary-message.js +3 -2
- package/dist/modes/interactive/components/compaction-summary-message.js.map +1 -1
- package/dist/modes/interactive/components/custom-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/custom-message.js +4 -4
- package/dist/modes/interactive/components/custom-message.js.map +1 -1
- package/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/skill-invocation-message.js +3 -2
- package/dist/modes/interactive/components/skill-invocation-message.js.map +1 -1
- package/dist/modes/interactive/components/user-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/user-message.js +3 -3
- package/dist/modes/interactive/components/user-message.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +3 -3
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/dist/modes/interactive/theme/theme.d.ts +30 -5
- package/dist/modes/interactive/theme/theme.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme.js +24 -6
- package/dist/modes/interactive/theme/theme.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +4 -4
|
@@ -72,7 +72,7 @@ import { ModelController } from "./model-controller.js";
|
|
|
72
72
|
import { ExpandableText, formatDisplayPath, isExpandable, showLoadedResources as renderLoadedResources, } from "./resource-display.js";
|
|
73
73
|
import { checkForPackageUpdates, checkTmuxKeyboardSetup, getChangelogForDisplay } from "./startup-checks.js";
|
|
74
74
|
import { TeamFocusController } from "./team-focus.js";
|
|
75
|
-
import {
|
|
75
|
+
import { applyBlockFill, getAvailableThemes, getAvailableThemesWithPaths, getEditorTheme, getMarkdownTheme, getThemeByName, initTheme, onThemeChange, setRegisteredThemes, setTheme, setThemeInstance, stopThemeWatcher, Theme, theme, } from "./theme/theme.js";
|
|
76
76
|
import { VoiceController } from "./voice/voice-controller.js";
|
|
77
77
|
import { websearchApiKeyNotice } from "./websearch-warning.js";
|
|
78
78
|
/** Interface for components that can be expanded/collapsed */
|
|
@@ -3059,8 +3059,8 @@ export class InteractiveMode {
|
|
|
3059
3059
|
* a single coloured line is easy to scroll straight past.
|
|
3060
3060
|
*/
|
|
3061
3061
|
showBlock(bg, fg, title, body) {
|
|
3062
|
-
const box = new Box(1, 1
|
|
3063
|
-
|
|
3062
|
+
const box = new Box(1, 1);
|
|
3063
|
+
applyBlockFill(box, bg);
|
|
3064
3064
|
box.addChild(new Text(theme.bold(theme.fg(fg, title)), 0, 0));
|
|
3065
3065
|
for (const line of body) {
|
|
3066
3066
|
box.addChild(new Text(theme.fg("muted", line), 0, 0));
|