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
2 changes: 1 addition & 1 deletion apps/marketing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"astro": "^7.1.6"
"astro": "^7.2.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
Expand Down
2 changes: 1 addition & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@effect/platform-node": "catalog:",
"@effect/platform-node-shared": "catalog:",
"@effect/sql-sqlite-bun": "catalog:",
"@opencode-ai/sdk": "^1.18.11",
"@opencode-ai/sdk": "^1.18.15",
"@pierre/diffs": "catalog:",
"effect": "catalog:",
"node-pty": "^1.1.0"
Expand Down
8 changes: 4 additions & 4 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test:browser:install": "playwright install --with-deps chromium"
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@base-ui/react": "^1.7.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
Expand All @@ -24,9 +24,9 @@
"@legendapp/list": "^3.3.3",
"@lexical/react": "^0.47.0",
"@pierre/diffs": "catalog:",
"@tanstack/react-pacer": "^0.22.1",
"@tanstack/react-pacer": "^0.23.0",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-router": "^1.170.22",
"@threadlines/client-runtime": "workspace:*",
"@threadlines/contracts": "workspace:*",
"@threadlines/shared": "workspace:*",
Expand All @@ -35,7 +35,7 @@
"class-variance-authority": "^0.7.1",
"effect": "catalog:",
"lexical": "^0.47.0",
"lucide-react": "^1.28.0",
"lucide-react": "^1.30.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-markdown": "^10.1.0",
Expand Down
5 changes: 3 additions & 2 deletions apps/web/src/components/chat/ProviderModelPicker.browser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -856,8 +856,9 @@ describe("ProviderModelPicker", () => {
await openModelPicker();

// The collapsed search input is focused on open, so keyboard nav
// works without clicking into it.
await userEvent.keyboard("{ArrowDown}");
// works without clicking into it. The list opens with the current
// model already highlighted (Base UI 1.7 initial-highlight behaviour),
// so the first arrow moves off it.
await vi.waitFor(() => {
const highlightedItem = document.querySelector<HTMLElement>(
'[data-slot="combobox-item"][data-highlighted]',
Expand Down
Loading
Loading