chore: merge dev into v2

This commit is contained in:
Aiden Cline 2026-07-08 20:40:07 +00:00
commit f39bdd86ce
150 changed files with 8974 additions and 751 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@opencode-ai/session-ui",
"version": "1.17.14",
"version": "1.17.15",
"private": true,
"type": "module",
"license": "MIT",

View file

@ -121,6 +121,20 @@
margin: 0;
}
li:has(> input[type="checkbox"]),
li:has(> p > input[type="checkbox"]) {
position: relative;
list-style-type: none;
}
li > input[type="checkbox"],
li > p > input[type="checkbox"] {
position: absolute;
top: 4px;
left: -20px;
margin: 0;
}
li > p + p {
display: block;
margin-top: 0.5rem;

View file

@ -448,8 +448,10 @@ export function SessionTurn(
>
<div data-slot="session-turn-diffs-header">
<span data-slot="session-turn-diffs-label">
{edited()} {i18n.t("ui.sessionTurn.diffs.changed")}{" "}
{i18n.t(edited() === 1 ? "ui.common.file.one" : "ui.common.file.other")}
{i18n.t(
edited() === 1 ? "ui.sessionTurn.diffs.changed.one" : "ui.sessionTurn.diffs.changed.other",
{ count: String(edited()) },
)}
</span>
<DiffChanges changes={diffs()} />
<Show when={overflow() > 0}>