Some ignored filles was missing
This commit is contained in:
parent
7db22245e2
commit
fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions
32
wwwroot/js/renderers/AllDayEventRenderer.d.ts
vendored
Normal file
32
wwwroot/js/renderers/AllDayEventRenderer.d.ts
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
import { IEventLayout } from '../utils/AllDayLayoutEngine';
|
||||
import { IDragStartEventPayload } from '../types/EventTypes';
|
||||
export declare class AllDayEventRenderer {
|
||||
private container;
|
||||
private originalEvent;
|
||||
private draggedClone;
|
||||
constructor();
|
||||
private getContainer;
|
||||
private getAllDayContainer;
|
||||
/**
|
||||
* Handle drag start for all-day events
|
||||
*/
|
||||
handleDragStart(payload: IDragStartEventPayload): void;
|
||||
/**
|
||||
* Render an all-day event with pre-calculated layout
|
||||
*/
|
||||
private renderAllDayEventWithLayout;
|
||||
/**
|
||||
* Remove an all-day event by ID
|
||||
*/
|
||||
removeAllDayEvent(eventId: string): void;
|
||||
/**
|
||||
* Clear cache when DOM changes
|
||||
*/
|
||||
clearCache(): void;
|
||||
/**
|
||||
* Render all-day events for specific period using AllDayEventRenderer
|
||||
*/
|
||||
renderAllDayEventsForPeriod(eventLayouts: IEventLayout[]): void;
|
||||
private clearAllDayEvents;
|
||||
handleViewChanged(event: CustomEvent): void;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue