@agent-link/server 0.1.155 → 0.1.157
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 +1 -1
- package/web/app.js +0 -2
- package/web/landing.html +3 -3
- package/web/landing.zh.html +3 -3
- package/web/style.css +0 -6
package/package.json
CHANGED
package/web/app.js
CHANGED
|
@@ -914,7 +914,6 @@ const App = {
|
|
|
914
914
|
@click="renamingTeamId !== t.teamId && viewHistoricalTeam(t.teamId)"
|
|
915
915
|
:title="t.title"
|
|
916
916
|
>
|
|
917
|
-
<svg class="team-history-icon" viewBox="0 0 24 24" width="14" height="14"><path fill="currentColor" d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/></svg>
|
|
918
917
|
<div class="team-history-info">
|
|
919
918
|
<div v-if="renamingTeamId === t.teamId" class="session-rename-row">
|
|
920
919
|
<input
|
|
@@ -1163,7 +1162,6 @@ const App = {
|
|
|
1163
1162
|
@click="viewHistoricalTeam(t.teamId)"
|
|
1164
1163
|
:title="t.title"
|
|
1165
1164
|
>
|
|
1166
|
-
<svg class="team-history-icon" viewBox="0 0 24 24" width="14" height="14"><path fill="currentColor" d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/></svg>
|
|
1167
1165
|
<div class="team-history-info">
|
|
1168
1166
|
<div class="team-history-title">{{ t.title || 'Untitled team' }}</div>
|
|
1169
1167
|
<div class="team-history-meta">
|
package/web/landing.html
CHANGED
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
--accent: #3b82f6;
|
|
54
54
|
--accent-soft: rgba(59,130,246,0.15);
|
|
55
55
|
--accent-glow: rgba(59,130,246,0.4);
|
|
56
|
-
--rose: #
|
|
56
|
+
--rose: #f43f5e;
|
|
57
57
|
--amber: #f59e0b;
|
|
58
58
|
--cyan: #22d3ee;
|
|
59
59
|
--green: #34d399;
|
|
@@ -662,7 +662,7 @@
|
|
|
662
662
|
}
|
|
663
663
|
|
|
664
664
|
.bento-icon.purple { background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05)); color: var(--accent); }
|
|
665
|
-
.bento-icon.rose { background: linear-gradient(135deg, rgba(
|
|
665
|
+
.bento-icon.rose { background: linear-gradient(135deg, rgba(244,63,94,0.2), rgba(244,63,94,0.05)); color: var(--rose); }
|
|
666
666
|
.bento-icon.cyan { background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(34,211,238,0.05)); color: var(--cyan); }
|
|
667
667
|
.bento-icon.green { background: linear-gradient(135deg, rgba(52,211,153,0.2), rgba(52,211,153,0.05)); color: var(--green); }
|
|
668
668
|
.bento-icon.amber { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.05)); color: var(--amber); }
|
|
@@ -1194,7 +1194,7 @@
|
|
|
1194
1194
|
</div>
|
|
1195
1195
|
|
|
1196
1196
|
<!-- File Preview -->
|
|
1197
|
-
<div class="bento-card">
|
|
1197
|
+
<div class="bento-card wide">
|
|
1198
1198
|
<div class="bento-visual">
|
|
1199
1199
|
<div class="bento-icon rose">
|
|
1200
1200
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="12" y1="11" x2="12" y2="17"></line><line x1="9" y1="14" x2="15" y2="14"></line></svg>
|
package/web/landing.zh.html
CHANGED
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
--accent: #3b82f6;
|
|
56
56
|
--accent-soft: rgba(59,130,246,0.15);
|
|
57
57
|
--accent-glow: rgba(59,130,246,0.4);
|
|
58
|
-
--rose: #
|
|
58
|
+
--rose: #f43f5e;
|
|
59
59
|
--amber: #f59e0b;
|
|
60
60
|
--cyan: #22d3ee;
|
|
61
61
|
--green: #34d399;
|
|
@@ -663,7 +663,7 @@
|
|
|
663
663
|
}
|
|
664
664
|
|
|
665
665
|
.bento-icon.purple { background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05)); color: var(--accent); }
|
|
666
|
-
.bento-icon.rose { background: linear-gradient(135deg, rgba(
|
|
666
|
+
.bento-icon.rose { background: linear-gradient(135deg, rgba(244,63,94,0.2), rgba(244,63,94,0.05)); color: var(--rose); }
|
|
667
667
|
.bento-icon.cyan { background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(34,211,238,0.05)); color: var(--cyan); }
|
|
668
668
|
.bento-icon.green { background: linear-gradient(135deg, rgba(52,211,153,0.2), rgba(52,211,153,0.05)); color: var(--green); }
|
|
669
669
|
.bento-icon.amber { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.05)); color: var(--amber); }
|
|
@@ -1193,7 +1193,7 @@
|
|
|
1193
1193
|
</div>
|
|
1194
1194
|
|
|
1195
1195
|
<!-- File Preview -->
|
|
1196
|
-
<div class="bento-card">
|
|
1196
|
+
<div class="bento-card wide">
|
|
1197
1197
|
<div class="bento-visual">
|
|
1198
1198
|
<div class="bento-icon rose">
|
|
1199
1199
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="12" y1="11" x2="12" y2="17"></line><line x1="9" y1="14" x2="15" y2="14"></line></svg>
|
package/web/style.css
CHANGED
|
@@ -3722,7 +3722,6 @@ body {
|
|
|
3722
3722
|
.team-history-item {
|
|
3723
3723
|
display: flex;
|
|
3724
3724
|
align-items: center;
|
|
3725
|
-
gap: 8px;
|
|
3726
3725
|
padding: 8px 10px;
|
|
3727
3726
|
border-radius: 8px;
|
|
3728
3727
|
cursor: pointer;
|
|
@@ -3739,11 +3738,6 @@ body {
|
|
|
3739
3738
|
border-left-color: var(--accent);
|
|
3740
3739
|
}
|
|
3741
3740
|
|
|
3742
|
-
.team-history-icon {
|
|
3743
|
-
flex-shrink: 0;
|
|
3744
|
-
color: var(--text-secondary);
|
|
3745
|
-
}
|
|
3746
|
-
|
|
3747
3741
|
.team-history-info {
|
|
3748
3742
|
min-width: 0;
|
|
3749
3743
|
flex: 1;
|