clay-server 2.27.0-beta.15 → 2.27.0-beta.16

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.
@@ -701,6 +701,16 @@ function renderMobileSessionsInto(container) {
701
701
  });
702
702
  container.appendChild(newBtn);
703
703
 
704
+ var importBtn = document.createElement("button");
705
+ importBtn.className = "mobile-session-new";
706
+ importBtn.innerHTML = '<i data-lucide="import" style="width:16px;height:16px"></i> Import session';
707
+ importBtn.addEventListener("click", function () {
708
+ closeMobileSheet();
709
+ var targetBtn = document.getElementById("resume-session-btn");
710
+ if (targetBtn) setTimeout(function () { targetBtn.click(); }, 250);
711
+ });
712
+ container.appendChild(importBtn);
713
+
704
714
  // Partition: loop sessions vs normal sessions (same logic as desktop renderSessionList)
705
715
  var sessions = getCachedSessions();
706
716
  var loopGroups = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clay-server",
3
- "version": "2.27.0-beta.15",
3
+ "version": "2.27.0-beta.16",
4
4
  "description": "Self-hosted Claude Code in your browser. Multi-session, multi-user, push notifications.",
5
5
  "bin": {
6
6
  "clay-server": "./bin/cli.js",