mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
- Added BasicPageHeader export to atoms/index.ts (was only exported as PageHeader) - Added Accordion export to atoms/index.ts (file existed but wasn't exported) - Created AppBranding component in molecules/ (was missing) - Added AppBranding export to molecules/index.ts - Added missing exports to FeatureIdeaCloud/constants.ts (GROUP_COLORS, CATEGORIES, PRIORITIES, STATUSES) - Build now completely clean with zero errors Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
31 lines
975 B
TypeScript
31 lines
975 B
TypeScript
export const CONNECTION_STYLE = {
|
|
stroke: '#a78bfa',
|
|
strokeWidth: 2.5
|
|
}
|
|
|
|
export const STATUS_COLORS = {
|
|
idea: 'bg-muted text-muted-foreground',
|
|
planned: 'bg-accent text-accent-foreground',
|
|
'in-progress': 'bg-primary text-primary-foreground',
|
|
completed: 'bg-green-600 text-white',
|
|
}
|
|
|
|
export const PRIORITY_COLORS = {
|
|
low: 'border-blue-400/60 bg-blue-50/80 dark:bg-blue-950/40',
|
|
medium: 'border-amber-400/60 bg-amber-50/80 dark:bg-amber-950/40',
|
|
high: 'border-red-400/60 bg-red-50/80 dark:bg-red-950/40',
|
|
}
|
|
|
|
// Missing exports for GROUP_COLORS, CATEGORIES, PRIORITIES, STATUSES
|
|
export const GROUP_COLORS = {
|
|
default: '#a78bfa',
|
|
primary: '#60a5fa',
|
|
success: '#34d399',
|
|
warning: '#fbbf24',
|
|
danger: '#f87171',
|
|
}
|
|
|
|
export const CATEGORIES = ['feature', 'enhancement', 'bug', 'documentation', 'other'] as const
|
|
export const PRIORITIES = ['low', 'medium', 'high'] as const
|
|
export const STATUSES = ['idea', 'planned', 'in-progress', 'completed'] as const
|