@opengeni/react 0.44.5 → 0.45.0
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 +3 -0
- package/dist/{chunk-LYRJUU5V.js → chunk-FD72GJMK.js} +533 -190
- package/dist/chunk-FD72GJMK.js.map +1 -0
- package/dist/components/user-message-body.d.ts +36 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/session-ui.d.ts +2 -0
- package/dist/session-ui.js +7 -3
- package/package.json +2 -2
- package/src/components/markdown.tsx +1 -1
- package/src/components/message-timeline.tsx +129 -20
- package/src/components/user-message-body.tsx +341 -0
- package/src/hooks/use-codex-accounts.ts +1 -1
- package/src/index.ts +2 -0
- package/src/session-ui.ts +2 -0
- package/dist/chunk-LYRJUU5V.js.map +0 -1
package/README.md
CHANGED
|
@@ -412,6 +412,9 @@ intentional changes should regenerate those snapshots and review the diff.
|
|
|
412
412
|
"jump to latest" affordance, streaming caret, collapsible activity clusters,
|
|
413
413
|
and worker cards (wire `onOpenSession` to drill into a worker). Pass
|
|
414
414
|
`renderMessageText` to plug a markdown renderer.
|
|
415
|
+
- `UserMessageBody` — the shared lossless rendered-height disclosure for
|
|
416
|
+
already-sent user text. Use it inside a custom `renderMessageText` user branch
|
|
417
|
+
so attachments and voice identity remain outside the clipped Markdown region.
|
|
415
418
|
- `SessionStatus` / `StatusDot` — status badges; live states breathe.
|
|
416
419
|
- `FleetTile` — one session in a fleet grid: title, status, model, recency.
|
|
417
420
|
- `ModelPicker` — a compact model dropdown for a composer slot, grouping the
|