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
25 lines
388 B
TypeScript
25 lines
388 B
TypeScript
/**
|
|
* UI Adapter - Theme and density tokens
|
|
*/
|
|
|
|
export const densityTokens = {
|
|
compact: {
|
|
inputHeight: 34,
|
|
gridRowHeight: 34,
|
|
touchTarget: 44,
|
|
fontSize: 12,
|
|
},
|
|
comfortable: {
|
|
inputHeight: 36,
|
|
gridRowHeight: 36,
|
|
touchTarget: 48,
|
|
fontSize: 14,
|
|
},
|
|
touch: {
|
|
inputHeight: 48,
|
|
gridRowHeight: 48,
|
|
touchTarget: 52,
|
|
fontSize: 16,
|
|
},
|
|
}
|