70852bf378
- Removed all @kbx/contracts imports and types
- Cleaned up feature registries (minimal definitions)
- Simplified page components (HomePage, ModelsList, ShadowRunList)
- Removed KBX UI components and adapters
- Fixed TypeScript errors with type casting
- Frontend build: 737KB (204KB gzip) ✅
CI/CD Pipeline: Ready for testing
15 lines
332 B
TypeScript
15 lines
332 B
TypeScript
/**
|
|
* Approval Feature Screen Registry
|
|
*/
|
|
|
|
export const approvalQueueScreen = {
|
|
screenId: 'governance.approval.queue',
|
|
title: 'Approval Queue',
|
|
module: 'ERP',
|
|
path: '/governance/approvals',
|
|
component: () => import('./pages/ApprovalQueue.vue'),
|
|
permissions: ['approval.review'],
|
|
}
|
|
|
|
export default [approvalQueueScreen]
|