2025-09-12 00:36:02 +02:00
|
|
|
// All-day event rendering using factory pattern
|
|
|
|
|
|
|
|
|
|
import { CalendarEvent } from '../types/CalendarTypes';
|
|
|
|
|
import { SwpAllDayEventElement } from '../elements/SwpEventElement';
|
|
|
|
|
import { DateCalculator } from '../utils/DateCalculator';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* AllDayEventRenderer - Handles rendering of all-day events in header row
|
|
|
|
|
* Uses factory pattern with SwpAllDayEventElement for clean DOM creation
|
|
|
|
|
*/
|
|
|
|
|
export class AllDayEventRenderer {
|
|
|
|
|
|
|
|
|
|
|
2025-09-12 22:21:56 +02:00
|
|
|
|
2025-09-12 00:36:02 +02:00
|
|
|
}
|