typebulb 0.23.5 → 0.24.0
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/dist/agents/claude/styles.css +16 -7
- package/dist/agents/pi/client.js +218 -218
- package/dist/agents/pi/matchu-patchu.ts +1 -1
- package/dist/agents/pi/styles.css +16 -7
- package/dist/index.js +185 -184
- package/dist/servers.js +43 -43
- package/package.json +1 -1
|
@@ -405,22 +405,31 @@ body {
|
|
|
405
405
|
.at-row:hover { background: color-mix(in srgb, var(--accent) 10%, transparent); }
|
|
406
406
|
/* The '/' palette rides the same popup chrome; its rows pair a command with a muted description. */
|
|
407
407
|
.slash-desc { color: var(--muted); font-size: .74rem; margin-left: .6rem; }
|
|
408
|
-
/* The composer's dialog
|
|
409
|
-
|
|
408
|
+
/* The composer's dialog fields (TB-Agent-Composer-Toolkit.md Piece 3), shared by both homes: the
|
|
409
|
+
trust-modal chrome (server dialogs, confirms) and the anchored .dlg-popup (local select/input).
|
|
410
|
+
Select options reuse .at-row inside a scroll box. */
|
|
410
411
|
/* Block, NOT flex: .at-row's overflow:hidden zeroes flex min-heights, squashing a long option
|
|
411
412
|
list (pi can return the whole OpenRouter catalog); block rows keep their natural height and
|
|
412
413
|
the box scrolls. */
|
|
413
|
-
.
|
|
414
|
+
.dlg-opts {
|
|
414
415
|
max-height: 40vh; overflow-y: auto;
|
|
415
416
|
border: 1px solid var(--border); border-radius: 8px; padding: .25rem;
|
|
416
417
|
}
|
|
417
|
-
.
|
|
418
|
+
.dlg-input, .dlg-editor {
|
|
418
419
|
font: inherit; font-size: .85rem; color: var(--fg); background: transparent;
|
|
419
420
|
border: 1px solid var(--border); border-radius: 7px; padding: .4rem .6rem; width: 100%;
|
|
420
421
|
}
|
|
421
|
-
.
|
|
422
|
-
.
|
|
423
|
-
.
|
|
422
|
+
.dlg-input:focus, .dlg-editor:focus { outline: none; border-color: var(--accent); }
|
|
423
|
+
.dlg-editor { min-height: 8rem; resize: vertical; }
|
|
424
|
+
.dlg-filter { margin-top: .4rem; }
|
|
425
|
+
/* A local (recipe) select/input rides the @-popup shell — the gesture register, not the modal's
|
|
426
|
+
(composer.ts #dlgAnchored). The popup itself stops scrolling (its .dlg-opts scrolls instead, so
|
|
427
|
+
the filter stays pinned at the anchored bottom edge); the opts box drops its border, the popup
|
|
428
|
+
frame already provides one. The catcher is the invisible click-away target under the popup. */
|
|
429
|
+
.dlg-popup { max-height: none; overflow: visible; }
|
|
430
|
+
.dlg-popup .dlg-opts { border: none; padding: 0; }
|
|
431
|
+
.dlg-label { font-size: .78rem; color: var(--muted); padding: .1rem .25rem .3rem; }
|
|
432
|
+
.dlg-catcher { position: fixed; inset: 0; z-index: 9; }
|
|
424
433
|
.at-empty { padding: .6rem; color: var(--muted); font-size: .85rem; text-align: center; }
|
|
425
434
|
/* The driver's in-flight assistant message — visibly provisional next to landed bubbles; the
|
|
426
435
|
durable row replaces it when the entry hits the transcript. */
|