feat: Add CalendarInvitePanel to display invite details in mail app

- Create CalendarInvitePanel widget showing event summary, time, location,
  organizer, and attendees with accept/decline/tentative buttons
- Add is_calendar_email() to notification_detector for detecting invite emails
- Add get_raw_message() to himalaya client for exporting full MIME content
- Refactor calendar_parser.py with proper icalendar parsing (METHOD at
  VCALENDAR level, not VEVENT)
- Integrate calendar panel into ContentContainer.display_content flow
- Update tests for new calendar parsing API
- Minor: fix today's header style in calendar WeekGrid
This commit is contained in:
Bendt
2025-12-29 08:41:46 -05:00
parent b89f72cd28
commit db58cb7a2f
8 changed files with 680 additions and 93 deletions

View File

@@ -27,6 +27,7 @@ dependencies = [
"certifi>=2025.4.26",
"click>=8.1.0",
"html2text>=2025.4.15",
"icalendar>=6.0.0",
"mammoth>=1.9.0",
"markitdown[all]>=0.1.1",
"msal>=1.32.3",