Some ignored filles was missing
This commit is contained in:
parent
7db22245e2
commit
fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions
24
wwwroot/js/renderers/GridStyleManager.d.ts
vendored
Normal file
24
wwwroot/js/renderers/GridStyleManager.d.ts
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import { ResourceCalendarData } from '../types/CalendarTypes';
|
||||
/**
|
||||
* GridStyleManager - Manages CSS variables and styling for the grid
|
||||
* Separated from GridManager to follow Single Responsibility Principle
|
||||
*/
|
||||
export declare class GridStyleManager {
|
||||
constructor();
|
||||
/**
|
||||
* Update all grid CSS variables
|
||||
*/
|
||||
updateGridStyles(resourceData?: ResourceCalendarData | null): void;
|
||||
/**
|
||||
* Set time-related CSS variables
|
||||
*/
|
||||
private setTimeVariables;
|
||||
/**
|
||||
* Calculate number of columns based on calendar type and view
|
||||
*/
|
||||
private calculateColumnCount;
|
||||
/**
|
||||
* Set column width based on fitToWidth setting
|
||||
*/
|
||||
private setColumnWidth;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue