Some ignored filles was missing
This commit is contained in:
parent
7db22245e2
commit
fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions
25
wwwroot/js/strategies/MonthViewStrategy.d.ts
vendored
Normal file
25
wwwroot/js/strategies/MonthViewStrategy.d.ts
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/**
|
||||
* MonthViewStrategy - Strategy for month view rendering
|
||||
* Completely different from week view - no time axis, cell-based events
|
||||
*/
|
||||
import { ViewStrategy, ViewContext, ViewLayoutConfig } from './ViewStrategy';
|
||||
export declare class MonthViewStrategy implements ViewStrategy {
|
||||
private dateCalculator;
|
||||
constructor();
|
||||
getLayoutConfig(): ViewLayoutConfig;
|
||||
renderGrid(context: ViewContext): void;
|
||||
private createMonthGrid;
|
||||
private createDayHeaders;
|
||||
private createDayCells;
|
||||
private getMonthDates;
|
||||
private renderMonthEvents;
|
||||
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