typebulb 0.11.0 → 0.11.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 +2 -0
- package/dist/agents/claude/client.js +97 -105
- package/dist/agents/claude/index.html +2 -2
- package/dist/agents/claude/styles.css +4 -1
- package/dist/index.js +79 -124
- package/dist/render.js +29 -37
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.22/dist/katex.min.css">
|
|
2
|
-
<div id="app"></div>
|
|
1
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.22/dist/katex.min.css">
|
|
2
|
+
<div id="app"></div>
|
|
@@ -566,7 +566,10 @@ a.server-port:hover { color: var(--accent); text-decoration: underline; }
|
|
|
566
566
|
mermaid SVG is transparent so a bg backs it, the bulb iframe is opaque so it occludes the stripe. */
|
|
567
567
|
.md .mermaid {
|
|
568
568
|
width: var(--lane-w);
|
|
569
|
-
|
|
569
|
+
/* Vertical gap must be >= the box-shadow spread (1rem below): a smaller gap lets the bg ring
|
|
570
|
+
paint over the half-line of prose above/below — the trap the opaque bulb embed dodges by
|
|
571
|
+
having no shadow, which the transparent mermaid can't. */
|
|
572
|
+
margin: 1rem 0;
|
|
570
573
|
margin-left: var(--lane-ml);
|
|
571
574
|
margin-right: auto;
|
|
572
575
|
position: relative;
|