typebulb 0.24.0 → 0.24.1
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/client.js +2 -2
- package/dist/agents/claude/styles.css +4 -0
- package/dist/agents/pi/client.js +116 -116
- package/dist/agents/pi/matchu-patchu.ts +1 -1
- package/dist/agents/pi/styles.css +4 -0
- package/dist/index.js +100 -99
- package/package.json +1 -1
|
@@ -2217,7 +2217,7 @@ var Patcher = class _Patcher {
|
|
|
2217
2217
|
|
|
2218
2218
|
// cli/agents/pi/server/piPatcherExtension.ts
|
|
2219
2219
|
var DESCRIPTION = true ? "Apply unified diffs to files \u2014 tolerant of form, strict about intent. Repairs sloppy AI-generated diffs (mangled headers, whitespace drift, missing prefixes; line numbers can be wrong or absent \u2014 hunks anchor by fuzzy-matched context lines) and applies all hunks atomically when the intent is unambiguous; fails with a precise, typed error when it isn't. Use for multi-hunk edits in one step, or when exact string-replacement editing fails on whitespace or invisible characters." : "Apply unified diffs to files.";
|
|
2220
|
-
var BUILD_TAG = true ? "matchu-patchu-pi 0.2.0, built 2026-07-
|
|
2220
|
+
var BUILD_TAG = true ? "matchu-patchu-pi 0.2.0, built 2026-07-12 15:43:42" : "matchu-patchu-pi dev";
|
|
2221
2221
|
var errorBlocks = (errors) => {
|
|
2222
2222
|
const parts = [`Patch failed with ${errors.length} error(s):`];
|
|
2223
2223
|
for (const e of errors) parts.push("", e.toString());
|
|
@@ -1604,6 +1604,10 @@ html[data-theme="dark"] .masthead-logo.dark { display: block; }
|
|
|
1604
1604
|
/* The <summary> toggle defaults to a text cursor — give it the pointer every other expandable uses. */
|
|
1605
1605
|
.thinking summary { cursor: pointer; }
|
|
1606
1606
|
.thinking pre { white-space: pre-wrap; }
|
|
1607
|
+
/* Streaming (draft) thinking: capped + scrollable at the bulb-streaming card's height — ambient
|
|
1608
|
+
progress, not reading material — stuck to the live edge unless the user scrolls up
|
|
1609
|
+
(#draftThinkingPre). Durable rows stay uncapped: finished thinking IS reading material. */
|
|
1610
|
+
.draft .thinking pre { max-height: 220px; overflow-y: auto; }
|
|
1607
1611
|
|
|
1608
1612
|
/* Copy button: an .overlay-pill revealed on bubble-hover. */
|
|
1609
1613
|
.bubble:hover .copy { opacity: 1; }
|