@agent-link/server 0.1.135 → 0.1.137

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-link/server",
3
- "version": "0.1.135",
3
+ "version": "0.1.137",
4
4
  "description": "AgentLink relay server",
5
5
  "license": "MIT",
6
6
  "repository": {
package/web/app.js CHANGED
@@ -863,8 +863,14 @@ const App = {
863
863
  <!-- Teams section -->
864
864
  <div v-if="teamsList.length > 0" class="sidebar-section sidebar-teams">
865
865
  <div class="sidebar-section-header">
866
- <span>Teams</span>
866
+ <span>Teams History</span>
867
867
  </div>
868
+
869
+ <button class="new-conversation-btn" @click="newTeam" :disabled="isTeamActive">
870
+ <svg viewBox="0 0 24 24" width="14" height="14"><path fill="currentColor" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>
871
+ New team
872
+ </button>
873
+
868
874
  <div class="team-history-list">
869
875
  <div
870
876
  v-for="t in teamsList" :key="t.teamId"
@@ -907,7 +913,7 @@ const App = {
907
913
 
908
914
  <div class="sidebar-section sidebar-sessions">
909
915
  <div class="sidebar-section-header">
910
- <span>History</span>
916
+ <span>Chat History</span>
911
917
  <button class="sidebar-refresh-btn" @click="requestSessionList" title="Refresh" :disabled="loadingSessions">
912
918
  <svg :class="{ spinning: loadingSessions }" viewBox="0 0 24 24" width="14" height="14"><path fill="currentColor" d="M17.65 6.35A7.958 7.958 0 0 0 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 0 1 12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/></svg>
913
919
  </button>
package/web/style.css CHANGED
@@ -3539,11 +3539,16 @@ body {
3539
3539
  .sidebar-teams {
3540
3540
  padding: 0.75rem;
3541
3541
  max-height: 35%;
3542
- overflow-y: auto;
3542
+ overflow: hidden;
3543
3543
  flex-shrink: 0;
3544
+ display: flex;
3545
+ flex-direction: column;
3544
3546
  }
3545
3547
 
3546
3548
  .team-history-list {
3549
+ flex: 1 1 auto;
3550
+ overflow-y: auto;
3551
+ min-height: 0;
3547
3552
  display: flex;
3548
3553
  flex-direction: column;
3549
3554
  gap: 2px;