@chrysb/alphaclaw 0.8.3-beta.4 → 0.8.3
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/lib/public/css/explorer.css +65 -22
- package/lib/public/dist/app.bundle.js +1585 -1555
- package/lib/public/js/app.js +0 -7
- package/lib/public/js/components/cron-tab/cron-job-settings-card.js +9 -2
- package/lib/public/js/components/google/gmail-setup-wizard.js +6 -2
- package/lib/public/js/components/icons.js +13 -0
- package/lib/public/js/components/routes/chat-route.js +3 -21
- package/lib/public/js/components/session-select-field.js +9 -2
- package/lib/public/js/components/sidebar.js +128 -25
- package/lib/public/js/components/webhooks/webhook-detail/index.js +5 -2
- package/lib/public/js/lib/model-config.js +1 -1
- package/lib/public/js/lib/session-keys.js +74 -0
- package/lib/public/js/lib/storage-keys.js +2 -1
- package/lib/server/routes/system.js +36 -85
- package/lib/server/slack-api.js +72 -0
- package/package.json +2 -2
- package/lib/setup/core-prompts/UI-DRY-OPPORTUNITIES.md +0 -50
|
@@ -215,7 +215,6 @@
|
|
|
215
215
|
.sidebar-chat-header {
|
|
216
216
|
display: flex;
|
|
217
217
|
align-items: center;
|
|
218
|
-
justify-content: space-between;
|
|
219
218
|
gap: 8px;
|
|
220
219
|
padding: 12px 16px 4px;
|
|
221
220
|
}
|
|
@@ -224,38 +223,82 @@
|
|
|
224
223
|
padding: 0;
|
|
225
224
|
}
|
|
226
225
|
|
|
227
|
-
.sidebar-chat-
|
|
226
|
+
.sidebar-chat-sessions-list {
|
|
227
|
+
flex: 1 1 auto;
|
|
228
|
+
min-height: 0;
|
|
229
|
+
overflow-y: auto;
|
|
230
|
+
padding: 2px 0 8px;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.sidebar-chat-agent-group {
|
|
234
|
+
display: flex;
|
|
235
|
+
flex-direction: column;
|
|
236
|
+
min-width: 0;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.sidebar-chat-agent-toggle {
|
|
240
|
+
display: flex;
|
|
241
|
+
align-items: center;
|
|
242
|
+
gap: 4px;
|
|
243
|
+
width: 100%;
|
|
244
|
+
margin: 0;
|
|
245
|
+
padding: 6px 12px 4px 10px;
|
|
228
246
|
border: none;
|
|
229
247
|
background: transparent;
|
|
230
248
|
color: var(--text-muted);
|
|
231
|
-
font:
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
padding: 6px;
|
|
237
|
-
margin: -6px;
|
|
249
|
+
font-size: 11px;
|
|
250
|
+
font-weight: 600;
|
|
251
|
+
letter-spacing: 0.02em;
|
|
252
|
+
text-transform: uppercase;
|
|
253
|
+
text-align: left;
|
|
238
254
|
cursor: pointer;
|
|
239
|
-
|
|
240
|
-
|
|
255
|
+
font-family: inherit;
|
|
256
|
+
user-select: none;
|
|
241
257
|
}
|
|
242
258
|
|
|
243
|
-
.sidebar-chat-
|
|
244
|
-
|
|
245
|
-
|
|
259
|
+
.sidebar-chat-agent-toggle:hover {
|
|
260
|
+
color: var(--text);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.sidebar-chat-agent-chevron {
|
|
264
|
+
display: inline-flex;
|
|
265
|
+
flex-shrink: 0;
|
|
266
|
+
transition: transform 0.15s ease;
|
|
267
|
+
color: var(--text-dim);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.sidebar-chat-agent-chevron.is-collapsed {
|
|
271
|
+
transform: rotate(-90deg);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.sidebar-chat-agent-chevron-icon {
|
|
275
|
+
width: 12px;
|
|
276
|
+
height: 12px;
|
|
246
277
|
display: block;
|
|
247
278
|
}
|
|
248
279
|
|
|
249
|
-
.sidebar-chat-
|
|
250
|
-
|
|
251
|
-
|
|
280
|
+
.sidebar-chat-agent-label {
|
|
281
|
+
flex: 1;
|
|
282
|
+
min-width: 0;
|
|
283
|
+
overflow: hidden;
|
|
284
|
+
text-overflow: ellipsis;
|
|
285
|
+
white-space: nowrap;
|
|
252
286
|
}
|
|
253
287
|
|
|
254
|
-
.sidebar-chat-sessions
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
padding:
|
|
288
|
+
.sidebar-chat-agent-sessions {
|
|
289
|
+
display: flex;
|
|
290
|
+
flex-direction: column;
|
|
291
|
+
min-width: 0;
|
|
292
|
+
padding: 0 0 4px;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.sidebar-chat-session-channel-icon {
|
|
296
|
+
width: 12px;
|
|
297
|
+
height: 12px;
|
|
298
|
+
flex-shrink: 0;
|
|
299
|
+
border-radius: 2px;
|
|
300
|
+
object-fit: contain;
|
|
301
|
+
opacity: 0.92;
|
|
259
302
|
}
|
|
260
303
|
|
|
261
304
|
.sidebar-chat-session-item {
|