1 Commits

Author SHA1 Message Date
Zopu Agent
faf8e4dc96 Zopu candidate for create-pr-26-c24dce7b-ffc7-4b73-97fb-3516e6c44c75 2026-07-30 04:26:35 +05:30
3 changed files with 60 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ export const ProjectHeader = ({
</p>
</div>
<Button
aria-label="Project settings"
aria-label="Workspace settings"
className="mr-2 size-9"
onClick={() => setSettingsOpen((open) => !open)}
size="icon"

View File

@@ -60,6 +60,12 @@ describe("Workspace frontend regression contracts", () => {
expect(messageRenderer).toContain("plugins={streamdownPlugins}");
});
test("exposes an accessible label on the workspace settings button", () => {
const header = source("../../components/workspace/project-header.tsx");
expect(header).toContain('aria-label="Workspace settings"');
});
test("keeps markdown readable on the forced-dark workspace surface", () => {
const styles = source("../../index.css");

View File

@@ -41,5 +41,57 @@
"vite-plus": "0.2.2",
"vitest": "catalog:"
},
"packageManager": "pnpm@11.17.0"
"packageManager": "pnpm@11.17.0",
"workspaces": {
"packages": [
"apps/web",
"packages/agents",
"packages/auth",
"packages/backend",
"packages/config",
"packages/env",
"packages/primitives",
"packages/ui"
],
"catalog": {
"@rivet-dev/agentos": "0.2.14",
"@rivet-dev/agentos-core": "0.2.14",
"@effect/platform-bun": "4.0.0-beta.99",
"dotenv": "17.4.2",
"zod": "4.4.3",
"lucide-react": "1.27.0",
"next-themes": "0.4.6",
"react": "19.2.8",
"react-dom": "19.2.8",
"sonner": "2.0.7",
"convex": "1.42.3",
"better-auth": "1.6.15",
"@convex-dev/better-auth": "0.12.5",
"@tanstack/react-form": "1.33.2",
"@types/react-dom": "19.2.3",
"tailwindcss": "4.3.3",
"tailwind-merge": "3.6.0",
"@better-auth/expo": "1.6.15",
"effect": "4.0.0-beta.99",
"typescript": "7.0.2",
"@types/bun": "1.3.14",
"heroui-native": "1.0.6",
"vite": "8.1.5",
"vitest": "4.1.10",
"convex-test": "0.0.54",
"react-native": "0.86.0",
"@types/react": "19.2.17",
"@types/node": "22.20.1",
"hono": "4.12.32",
"valibot": "1.4.2",
"streamdown": "2.5.0",
"@tailwindcss/postcss": "4.3.3",
"@tailwindcss/vite": "4.3.3"
}
},
"overrides": {
"react": "19.2.8",
"react-dom": "19.2.8",
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.2"
}
}