Commit 67d868d
authored
fix(docs/ask-widget): multi-line input that grows to 10 lines, then scrolls (#23311)
## Summary
Fixes the Aztec Docs AI assistant widget so long messages are visible
and editable while typing, instead of being clipped to a single line.
- Replaces the single-line `<input>` with a `<textarea>` that auto-grows
from 1 line up to **10 lines** as the user types or pastes.
- Past 10 lines, the textarea caps and `overflow-y: auto` engages so the
user can scroll their own message.
- Long unbroken strings (URLs, code) wrap at the edge (`overflow-wrap:
anywhere`).
- `min-width: 0` lets the textarea shrink inside its flex parent instead
of pinning to its content's intrinsic width.
- `box-sizing: border-box` keeps the auto-grow math in sync with the
11px vertical padding.
- Enter sends; Shift+Enter inserts a newline.
Same fix pattern as `honk-ai` PR
[#132](AztecProtocol/honk-ai#132) (the /ask
page).
## Test plan
- [x] JSX edit only — no API or build-script changes.
- [ ] Smoke in `yarn start` at the docs site:
- Type a 1-line message → input stays 1 line
- Type a 5-line message → input grows to 5 lines, no scrollbar
- Paste/type a 20-line message → input caps at 10 lines and shows a
vertical scrollbar
- Paste a single 500-char unbroken string → wraps at the right edge
instead of overflowing horizontally
- Shift+Enter inserts a newline; Enter sends
---
*Created by
[claudebox](https://claudebox.work/v2/sessions/07156e2779ffc369) ·
group: `slackbot`*1 file changed
Lines changed: 27 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| |||
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
61 | 71 | | |
62 | 72 | | |
63 | 73 | | |
| |||
362 | 372 | | |
363 | 373 | | |
364 | 374 | | |
365 | | - | |
| 375 | + | |
| 376 | + | |
366 | 377 | | |
367 | 378 | | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
368 | 385 | | |
369 | 386 | | |
| 387 | + | |
370 | 388 | | |
371 | 389 | | |
| 390 | + | |
372 | 391 | | |
373 | 392 | | |
374 | 393 | | |
375 | 394 | | |
| 395 | + | |
376 | 396 | | |
377 | 397 | | |
378 | 398 | | |
| 399 | + | |
379 | 400 | | |
| 401 | + | |
| 402 | + | |
| 403 | + | |
| 404 | + | |
380 | 405 | | |
381 | 406 | | |
382 | 407 | | |
| |||
0 commit comments