UNPKG

besper-frontend-site-dev-0935

Version:

Professional B-esper Frontend Site - Site-wide integration toolkit for full website bot deployment

55 lines (47 loc) 1.08 kB
// Core application constants // Note: API endpoint definitions have been moved to src/services/centralizedApi.js // for better consolidation and consistency export const WIDGET_POSITIONS = { 'bottom-right': { bottom: '20px', right: '20px' }, 'bottom-left': { bottom: '20px', left: '20px' }, 'top-right': { top: '20px', right: '20px' }, 'top-left': { top: '20px', left: '20px' }, }; export const SUPPORTED_FILE_TYPES = [ '.pdf', '.txt', '.docx', '.md', '.html', '.json', '.csv', ]; export const MAX_FILE_SIZE = 10 * 1024 * 1024; // 10MB export const DEFAULT_THEME = { primary: '#5897de', secondary: '#022d54', accent: '#10b981', background: '#ffffff', surface: '#f8fafc', text: '#1f2937', textSecondary: '#6b7280', border: '#e5e7eb', error: '#ef4444', success: '#10b981', warning: '#f59e0b', }; export const ANIMATION_DURATIONS = { fast: 150, normal: 300, slow: 500, }; export const BREAKPOINTS = { mobile: 768, tablet: 1024, desktop: 1200, }; export const Z_INDICES = { widget: 9000, modal: 9500, tooltip: 9999, };