15 lines
698 B
TypeScript
15 lines
698 B
TypeScript
|
|
import { EventStatus, EventType } from './types';
|
|
|
|
// Mock data moved to DataContext, keeping constants for Colors/Labels
|
|
|
|
export const MOCK_EVENTS = []; // Deprecated, use DataContext
|
|
|
|
export const STATUS_COLORS: Record<EventStatus, string> = {
|
|
[EventStatus.PENDING_APPROVAL]: 'bg-yellow-50 text-yellow-700 border-yellow-200',
|
|
[EventStatus.PLANNING]: 'bg-gray-100 text-gray-800 border-gray-200',
|
|
[EventStatus.CONFIRMED]: 'bg-blue-50 text-blue-800 border-blue-100',
|
|
[EventStatus.IN_PROGRESS]: 'bg-purple-50 text-purple-800 border-purple-100',
|
|
[EventStatus.DELIVERED]: 'bg-green-50 text-green-800 border-green-100',
|
|
[EventStatus.ARCHIVED]: 'bg-gray-50 text-gray-400 border-gray-100'
|
|
};
|