@poodle64/librarian 2026.9.2 → 2026.9.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.
@@ -146,6 +146,12 @@
146
146
  requirement numbers — so it is the main way a reader picks a reference
147
147
  out of a paragraph. Bordered rather than merely tinted, because a tint
148
148
  alone is invisible against this palette's flat surfaces. */
149
+ /* Inline, in running text: wraps at word boundaries like the prose around it
150
+ rather than scrolling in its own box — that pattern is reserved for wide
151
+ BLOCK content (a table, a fenced code block) that a reader scrolls past;
152
+ an inline identifier a reader is reading stays in flow. A long citation
153
+ title is exactly the case: nowrap clipped it at the container edge on a
154
+ phone with no way to read the rest. */
149
155
  .agent-prose :global(code) {
150
156
  font-family: var(--ds-font-mono, monospace);
151
157
  font-size: 0.8125em;
@@ -153,7 +159,8 @@
153
159
  border: 1px solid var(--border);
154
160
  border-radius: 0.35em;
155
161
  padding: 0.1em 0.35em;
156
- white-space: nowrap;
162
+ white-space: normal;
163
+ overflow-wrap: anywhere;
157
164
  }
158
165
 
159
166
  .agent-prose :global(pre) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poodle64/librarian",
3
- "version": "2026.9.2",
3
+ "version": "2026.9.3",
4
4
  "description": "Milton's conversation surface as a consumable Svelte 5 package: the stream client, transcript state and chat components (transcript, composer, markdown) every household app renders instead of rebuilding.",
5
5
  "type": "module",
6
6
  "license": "MIT",