Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions agentchatbus-ts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion agentchatbus-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agentchatbus-ts",
"version": "0.2.30",
"version": "0.2.31",
"private": true,
"description": "Initial TypeScript backend workspace for AgentChatBus",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion agentchatbus-ts/src/core/config/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export {
import { getConfig } from "./registry.js";
import type { AppConfig } from "./registry.js";

export const BUS_VERSION = "0.2.30";
export const BUS_VERSION = "0.2.31";
export const ADMIN_TOKEN: string | null = getConfig().adminToken;
export const ENABLE_HANDOFF_TARGET = getConfig().enableHandoffTarget;
export const ENABLE_STOP_REASON = getConfig().enableStopReason;
Expand Down
4 changes: 2 additions & 2 deletions vscode-agentchatbus/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vscode-agentchatbus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "agentchatbus",
"displayName": "AgentChatBus",
"description": "AgentChatBus client for VS Code",
"version": "0.2.30",
"version": "0.2.31",
"icon": "resources/bus_128.png",
"engines": {
"vscode": "^1.105.0"
Expand Down
118 changes: 118 additions & 0 deletions vscode-agentchatbus/resources/web-ui/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,124 @@ body[data-theme="light"] .thread-item .ti-pin-btn {
min-height: 0;
}

#main-panels {
flex: 1;
display: flex;
flex-direction: column;
min-width: 0;
min-height: 0;
}

#main.compare-mode #main-panels {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
gap: 0;
}

#primary-panel {
display: flex;
flex-direction: column;
min-width: 0;
min-height: 0;
}

.compare-banner {
flex-shrink: 0;
padding: 8px 16px;
font-size: 13px;
text-align: center;
color: var(--text-2);
background: var(--surface-2);
border-bottom: 1px solid var(--border);
}

.compare-panel {
display: flex;
flex-direction: column;
min-width: 0;
min-height: 0;
border-left: 1px solid var(--border);
background: var(--surface-1);
}

.compare-panel-header {
display: flex;
align-items: center;
gap: 12px;
padding: 0 16px;
height: 52px;
border-bottom: 1px solid var(--border);
flex-shrink: 0;
}

.compare-panel-title {
flex: 1;
min-width: 0;
font-size: 14px;
font-weight: 600;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.compare-panel-close {
flex-shrink: 0;
padding: 6px 12px;
font-size: 12px;
border: 1px solid var(--border-light);
border-radius: 8px;
background: transparent;
color: var(--text-1);
cursor: pointer;
}

.compare-panel-close:hover {
background: var(--surface-2);
}

.compare-messages-wrap {
flex: 1;
display: flex;
flex-direction: column;
min-height: 0;
min-width: 0;
}

#compare-sys-prompt-area {
flex-shrink: 0;
}

.compare-chat-body {
flex: 1;
min-height: 0;
min-width: 0;
display: flex;
}

.compare-messages-scroll {
flex: 1;
min-height: 0;
overflow-y: auto;
padding: 16px;
}

#compare-messages {
display: flex;
flex-direction: column;
gap: 12px;
}

@media (max-width: 900px) {
#main.compare-mode #main-panels {
display: flex;
flex-direction: column;
}

#main.compare-mode .compare-panel {
display: none !important;
}
}

/* Thread header */
#thread-header {
padding: 0 20px;
Expand Down
Loading
Loading