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
24 lines
596 B
TypeScript
24 lines
596 B
TypeScript
/**
|
|
* Models Feature Screen Registry
|
|
*/
|
|
|
|
export const modelsListScreen = {
|
|
screenId: 'model-ops.models.list',
|
|
title: 'Model Management',
|
|
module: 'ModelOps',
|
|
path: '/model-ops/models',
|
|
component: () => import('./pages/ModelList.vue'),
|
|
permissions: ['model.read'],
|
|
}
|
|
|
|
export const modelsDetailScreen = {
|
|
screenId: 'model-ops.models.detail',
|
|
title: 'Model Details',
|
|
module: 'ModelOps',
|
|
path: '/model-ops/models/:modelId',
|
|
component: () => import('./pages/ModelDetail.vue'),
|
|
permissions: ['model.read'],
|
|
}
|
|
|
|
export const modelScreens = [modelsListScreen, modelsDetailScreen]
|