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/strategies/WeekViewStrategy.d.ts
vendored
Normal file
22
wwwroot/js/strategies/WeekViewStrategy.d.ts
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* WeekViewStrategy - Strategy for week/day view rendering
|
||||
* Extracts the time-based grid logic from GridManager
|
||||
*/
|
||||
import { ViewStrategy, ViewContext, ViewLayoutConfig } from './ViewStrategy';
|
||||
export declare class WeekViewStrategy implements ViewStrategy {
|
||||
private dateCalculator;
|
||||
private gridRenderer;
|
||||
private styleManager;
|
||||
constructor();
|
||||
getLayoutConfig(): ViewLayoutConfig;
|
||||
renderGrid(context: ViewContext): void;
|
||||
getNextPeriod(currentDate: Date): Date;
|
||||
getPreviousPeriod(currentDate: Date): Date;
|
||||
getPeriodLabel(date: Date): string;
|
||||
getDisplayDates(baseDate: Date): Date[];
|
||||
getPeriodRange(baseDate: Date): {
|
||||
startDate: Date;
|
||||
endDate: Date;
|
||||
};
|
||||
destroy(): void;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue