feat(pages): Complete p05-page-migrations with all pages and navigation tests

- Create Team Members page with DataTable, search, and filters
- Create Projects page with status badges and workflow
- Create placeholder pages for Allocations, Actuals, Reports, Settings, Master Data
- Fix navigation config: change /team to /team-members
- Remove old Navigation.svelte component
- Add comprehensive navigation link E2E tests (16 tests)
- Add Team Members and Projects page E2E tests

All 16 navigation link tests passing:
- Dashboard, Team Members, Projects, Allocations, Actuals
- All 5 Reports pages (Forecast, Utilization, Costs, Variance, Allocation)
- Admin pages (Settings, Master Data)
- Authentication preservation across pages

Refs: openspec/changes/p05-page-migrations
Closes: p05-page-migrations
This commit is contained in:
2026-02-18 19:03:56 -05:00
parent 8e7bfbe517
commit 91269d91a8
17 changed files with 640 additions and 107 deletions

View File

@@ -0,0 +1,17 @@
<script lang="ts">
import PageHeader from '$lib/components/layout/PageHeader.svelte';
import EmptyState from '$lib/components/common/EmptyState.svelte';
import { Grid3X3 } from 'lucide-svelte';
</script>
<svelte:head>
<title>Allocation Matrix | Headroom</title>
</svelte:head>
<PageHeader title="Allocation Matrix" description="Resource allocation visualization" />
<EmptyState
title="Coming Soon"
description="Allocation matrix will be available in a future update."
icon={Grid3X3}
/>