UNPKG

@acontplus/ui-kit

Version:

Framework-agnostic UI kit library providing reusable design assets, SVG icon definitions, button types, select options, and design system elements for consistent user interfaces across any JavaScript framework.

36 lines 1.3 kB
export const NOTIFICATION_MESSAGES = { SUCCESS: { SAVE: 'Data saved successfully', DELETE: 'Item deleted successfully', UPDATE: 'Data updated successfully', UPLOAD: 'File uploaded successfully', CREATE: 'Item created successfully', SYNC: 'Data synchronized successfully', }, ERROR: { SAVE: 'Failed to save data', DELETE: 'Failed to delete item', UPDATE: 'Failed to update data', UPLOAD: 'Failed to upload file', NETWORK: 'Network error occurred', UNKNOWN: 'An unexpected error occurred', VALIDATION: 'Validation error', UNAUTHORIZED: 'Unauthorized access', SERVER: 'Server error occurred', }, WARNING: { UNSAVED_CHANGES: 'You have unsaved changes', SESSION_EXPIRING: 'Your session is about to expire', STORAGE_FULL: 'Storage is running low', DEPRECATED: 'This feature is deprecated', LIMIT_REACHED: 'Limit reached', }, INFO: { LOADING: 'Loading data...', PROCESSING: 'Processing request...', MAINTENANCE: 'System maintenance scheduled', UPDATE_AVAILABLE: 'Update available', BACKUP_COMPLETE: 'Backup completed', }, }; //# sourceMappingURL=notification-messages.js.map