clay-server 3.5.0-beta.2 → 3.5.0

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.
@@ -960,7 +960,7 @@
960
960
  width: 50%;
961
961
  max-width: 720px;
962
962
  min-width: 360px;
963
- border-right: 1px solid var(--border);
963
+ border-left: 1px solid var(--border);
964
964
  background: var(--bg);
965
965
  display: flex;
966
966
  flex-direction: column;
@@ -32,7 +32,7 @@ var pendingFileAt = null; // callback for pending file-at
32
32
  export function initFileBrowser(_ctx) {
33
33
  ctx = _ctx;
34
34
  var mainPanels = document.getElementById("main-panels");
35
- if (mainPanels && ctx.fileViewerEl) mainPanels.insertBefore(ctx.fileViewerEl, mainPanels.firstChild);
35
+ if (mainPanels && ctx.fileViewerEl) mainPanels.appendChild(ctx.fileViewerEl);
36
36
  initFileViewerTabs({
37
37
  onFocus: function(path) {
38
38
  if (path !== currentFilePath) requestFileContent(path);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clay-server",
3
- "version": "3.5.0-beta.2",
3
+ "version": "3.5.0",
4
4
  "description": "Self-hosted team workspace for Claude Code and Codex. Multi-user, browser-based, with persistent AI mates.",
5
5
  "bin": {
6
6
  "clay-server": "./bin/cli.js",