mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
* feat(den): add teams and skill hub management * feat(den-web): add UnderlineTabs component and apply to members + skill hubs screens * feat(den-web): add DashboardPageTemplate and apply to all 6 dashboard pages * feat(den-web): add DenButton component and apply across all dashboard pages * feat(den-web): add DenInput component and apply across all dashboard inputs * feat(den-web): UI polish pass — shared component system and skill hub redesign - Add UnderlineTabs, DashboardPageTemplate, DenButton, DenInput, DenTextarea shared components - Apply DashboardPageTemplate with PaperMeshGradient headers to all 6 dashboard pages - Apply DenButton (primary/secondary/destructive + loading/disabled) across all dashboard pages - Apply DenInput and DenTextarea replacing all raw inputs and textareas - Redesign skill hub list cards: PaperMeshGradient seeded by hub ID, clean layout - Redesign skill list cards: PaperMeshGradient seeded by skill ID, matching hub card design - Rewrite skill hub detail page: lighter type scale, moved last-updated inline, clean sidebar - Rewrite skill detail page: gradient header, visibility pill inline with title, removed sidebar - Rewrite skill editor: remove category field (not persisted), clean form layout - Clean up all 4 member tables: tighter rows, items-center alignment, lighter type - Fix ActionButton icon stacking bug (Tailwind Preflight svg display:block via icon prop) - Move member tab toolbar buttons inline with description text per tab - Add destructive button variant; fix button disabled/loading states - Clean up manage-members, billing, templates, background-agents screen designs --------- Co-authored-by: src-opn <src-opn@users.noreply.github.com> Co-authored-by: OmarMcAdam <gh@mcadam.io>
34 lines
669 B
JSON
34 lines
669 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": [
|
|
"OPENWORK_DEV_MODE",
|
|
"DATABASE_URL",
|
|
"BETTER_AUTH_SECRET",
|
|
"BETTER_AUTH_URL",
|
|
"DEN_BETTER_AUTH_TRUSTED_ORIGINS",
|
|
"CORS_ORIGINS",
|
|
"DEN_API_PORT",
|
|
"DEN_CONTROLLER_PORT",
|
|
"DEN_WORKER_PROXY_PORT",
|
|
"DEN_WEB_PORT",
|
|
"DEN_API_BASE",
|
|
"DEN_AUTH_ORIGIN",
|
|
"DEN_AUTH_FALLBACK_BASE",
|
|
"PROVISIONER_MODE"
|
|
],
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"dev:local": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".next/**"]
|
|
}
|
|
}
|
|
}
|