typebulb 0.13.0 → 0.13.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/README.md +19 -17
- package/description.md +1 -1
- package/dist/agents/claude/client.js +2 -1
- package/dist/index.js +184 -173
- package/dist/render.js +2 -1
- package/package.json +1 -1
package/dist/render.js
CHANGED
|
@@ -277,7 +277,7 @@ ${s.map(({variableName:n,uniqueLocalName:o})=>` reactHotLoader.register(${n}, "
|
|
|
277
277
|
// otherwise fail with cryptic CORS/CSP errors. Detect it and fail clearly.
|
|
278
278
|
//
|
|
279
279
|
// The same sandboxed-iframe path also backs the CLI's default (untrusted) launch
|
|
280
|
-
// (
|
|
280
|
+
// (TB-Trust.md), where the right message names \`--trust\` rather
|
|
281
281
|
// than "no host bridge". The host injects window.__TB_EMBED_ERR__ to override the
|
|
282
282
|
// text; absent it, the nested-bulb wording applies.
|
|
283
283
|
const isEmbedded = window.parent !== window;
|
|
@@ -481,6 +481,7 @@ ${s.map(({variableName:n,uniqueLocalName:o})=>` reactHotLoader.register(${n}, "
|
|
|
481
481
|
}
|
|
482
482
|
})();
|
|
483
483
|
`;function Of(t){return t.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""")}var $f=` *, *::before, *::after { box-sizing: border-box; }
|
|
484
|
+
canvas { max-width: 100%; }
|
|
484
485
|
body { margin: 0; display: flow-root; font-family: system-ui, -apple-system, sans-serif; }
|
|
485
486
|
html[data-theme="dark"] { color-scheme: dark; }
|
|
486
487
|
html[data-theme="light"] { color-scheme: light; }`;function Ff(t,e){let s=n=>n.replace(/<\/script/gi,"<\\/script");return` <script>
|
package/package.json
CHANGED