clay-server 3.2.1 → 3.2.2-beta.1

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.
@@ -51,6 +51,7 @@ body.pane-mode #input-area {
51
51
 
52
52
  #split-host {
53
53
  display: none;
54
+ position: relative;
54
55
  flex: 1;
55
56
  min-width: 0;
56
57
  min-height: 0;
@@ -56,6 +56,11 @@ export function initAppNotifications() {
56
56
  bellBtn = document.getElementById("notif-center-btn");
57
57
  badgeEl = document.getElementById("notif-center-badge");
58
58
 
59
+ // Split panes are secondary clients inside the parent shell. They keep
60
+ // notification state in sync, but the parent owns the single visible
61
+ // banner surface for the whole split view.
62
+ if (store.get('paneMode')) return;
63
+
59
64
  // Create banner container
60
65
  bannerContainer = document.createElement("div");
61
66
  bannerContainer.className = "notif-banner-container";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clay-server",
3
- "version": "3.2.1",
3
+ "version": "3.2.2-beta.1",
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",