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/features/all-day/AllDayHeightService.d.ts
vendored
Normal file
26
wwwroot/js/features/all-day/AllDayHeightService.d.ts
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/**
|
||||
* AllDayHeightService - Manages all-day row height calculations and animations
|
||||
*
|
||||
* STATELESS SERVICE - Reads all data from DOM via AllDayDomReader
|
||||
* - No persistent state
|
||||
* - Calculates required rows by reading DOM elements
|
||||
* - Animates header height based on DOM state
|
||||
*/
|
||||
export declare class AllDayHeightService {
|
||||
/**
|
||||
* Main entry point - recalculate and animate header height based on DOM
|
||||
*/
|
||||
recalculateAndAnimate(): void;
|
||||
/**
|
||||
* Animate all-day container to specific number of rows
|
||||
*/
|
||||
animateToRows(targetRows: number): void;
|
||||
/**
|
||||
* Calculate all-day height based on number of rows
|
||||
*/
|
||||
private calculateAllDayHeight;
|
||||
/**
|
||||
* Collapse all-day row (animate to 0 rows)
|
||||
*/
|
||||
collapseAllDayRow(): void;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue