Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
faf8e4dc96 |
@@ -36,7 +36,7 @@ export const ProjectHeader = ({
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<Button
|
<Button
|
||||||
aria-label="Project settings"
|
aria-label="Workspace settings"
|
||||||
className="mr-2 size-9"
|
className="mr-2 size-9"
|
||||||
onClick={() => setSettingsOpen((open) => !open)}
|
onClick={() => setSettingsOpen((open) => !open)}
|
||||||
size="icon"
|
size="icon"
|
||||||
|
|||||||
@@ -60,6 +60,12 @@ describe("Workspace frontend regression contracts", () => {
|
|||||||
expect(messageRenderer).toContain("plugins={streamdownPlugins}");
|
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", () => {
|
test("keeps markdown readable on the forced-dark workspace surface", () => {
|
||||||
const styles = source("../../index.css");
|
const styles = source("../../index.css");
|
||||||
|
|
||||||
|
|||||||
54
package.json
54
package.json
@@ -41,5 +41,57 @@
|
|||||||
"vite-plus": "0.2.2",
|
"vite-plus": "0.2.2",
|
||||||
"vitest": "catalog:"
|
"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"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user