Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
Notable API additions and breaking changes. For the full commit log, see
[GitHub Releases](https://github.com/mirrorstack-ai/web-ui-kit/releases).

## 0.5.8

- Agent sidebar reload reliability: the persisted drag-width and the restored
tabs/active conversation are no longer lost on reload. Fixes two races — the
controlled-open width *seed* placing a placeholder before the async width
fetch resolved (saved width discarded), and a focus/refetch or host mutation
during the in-flight tab hydrate stranding a fresh "new chat" draft over the
restored conversation. The fetched width is now authoritative once, and the
first load wins regardless of source.
- `AgentSidebarHeader`: deleting a conversation now opens a destructive
confirmation dialog (fires only on confirm), with optional localizable labels
(`deleteConfirmTitle`/`deleteConfirmMessage`/`deleteConfirmConfirmLabel`/
`deleteConfirmCancelLabel`).
- `AppShell`: content gutter tightened at xl (`xl:px-12` → `xl:px-10`).

## 0.5.7

- `AppShell`: new optional controlled-open props `open?` / `onOpenChange?`. The
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mirrorstack-ai/web-ui-kit",
"packageManager": "pnpm@10.29.3",
"version": "0.5.7",
"version": "0.5.8",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
Loading