Some ignored filles was missing
This commit is contained in:
parent
7db22245e2
commit
fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions
22
wwwroot/js/renderers/NavigationRenderer.d.ts
vendored
Normal file
22
wwwroot/js/renderers/NavigationRenderer.d.ts
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
import { IEventBus } from '../types/CalendarTypes';
|
||||
import { EventRenderingService } from './EventRendererManager';
|
||||
/**
|
||||
* NavigationRenderer - Handles DOM rendering for navigation containers
|
||||
* Separated from NavigationManager to follow Single Responsibility Principle
|
||||
*/
|
||||
export declare class NavigationRenderer {
|
||||
private eventBus;
|
||||
constructor(eventBus: IEventBus, eventRenderer: EventRenderingService);
|
||||
/**
|
||||
* Setup event listeners for DOM updates
|
||||
*/
|
||||
private setupEventListeners;
|
||||
private updateWeekInfoInDOM;
|
||||
/**
|
||||
* Apply filter state to pre-rendered grids
|
||||
*/
|
||||
applyFilterToPreRenderedGrids(filterState: {
|
||||
active: boolean;
|
||||
matchingIds: string[];
|
||||
}): void;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue