feat: Rebuild admin-ui with Preact + Signals
Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled

Complete rebuild of the admin-ui using Preact + Signals for a lightweight,
reactive framework. Features include:

- Team-centric workdesks (UI, UX, QA, Admin)
- Comprehensive API client with 150+ DSS backend endpoints
- Dark mode with system preference detection
- Keyboard shortcuts and command palette
- AI chat sidebar with Claude integration
- Toast notifications system
- Export/import functionality for project backup
- TypeScript throughout with full type coverage

Bundle size: ~66KB main (21KB gzipped), ~5KB framework overhead

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-10 20:29:21 -03:00
parent 8713e2b1c9
commit 71c6dc805a
51 changed files with 9043 additions and 25 deletions

View File

@@ -3,17 +3,14 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DSS Workdesk</title>
<link rel="stylesheet" href="/css/workdesk.css">
<!-- DSS Telemetry: Auto-capture all errors and send to backend -->
<script src="/js/telemetry.js"></script>
<!-- DSS Console Forwarder: Must be loaded first to capture early errors -->
<script type="module" src="/js/utils/console-forwarder.js"></script>
<meta name="description" content="DSS Admin - Design System Server Management">
<meta name="theme-color" content="#0f172a">
<title>DSS Admin</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
</head>
<body>
<ds-shell></ds-shell>
<script type="module" src="/js/components/layout/ds-shell.js"></script>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>