Some ignored filles was missing
This commit is contained in:
parent
7db22245e2
commit
fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions
26
wwwroot/js/renderers/ColumnRenderer.d.ts
vendored
Normal file
26
wwwroot/js/renderers/ColumnRenderer.d.ts
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import { Configuration } from '../configurations/CalendarConfig';
|
||||
import { DateService } from '../utils/DateService';
|
||||
import { WorkHoursManager } from '../managers/WorkHoursManager';
|
||||
/**
|
||||
* Interface for column rendering strategies
|
||||
*/
|
||||
export interface IColumnRenderer {
|
||||
render(columnContainer: HTMLElement, context: IColumnRenderContext): void;
|
||||
}
|
||||
/**
|
||||
* Context for column rendering
|
||||
*/
|
||||
export interface IColumnRenderContext {
|
||||
currentWeek: Date;
|
||||
config: Configuration;
|
||||
}
|
||||
/**
|
||||
* Date-based column renderer (original functionality)
|
||||
*/
|
||||
export declare class DateColumnRenderer implements IColumnRenderer {
|
||||
private dateService;
|
||||
private workHoursManager;
|
||||
constructor(dateService: DateService, workHoursManager: WorkHoursManager);
|
||||
render(columnContainer: HTMLElement, context: IColumnRenderContext): void;
|
||||
private applyWorkHoursToColumn;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue