Some ignored filles was missing
This commit is contained in:
parent
7db22245e2
commit
fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions
28
wwwroot/js/configurations/ConfigManager.d.ts
vendored
Normal file
28
wwwroot/js/configurations/ConfigManager.d.ts
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
import { Configuration } from './CalendarConfig';
|
||||
import { IEventBus } from '../types/CalendarTypes';
|
||||
/**
|
||||
* ConfigManager - Configuration loader and CSS property manager
|
||||
* Loads JSON and creates Configuration instance
|
||||
* Listens to events and manages CSS custom properties for dynamic styling
|
||||
*/
|
||||
export declare class ConfigManager {
|
||||
private eventBus;
|
||||
private config;
|
||||
constructor(eventBus: IEventBus, config: Configuration);
|
||||
/**
|
||||
* Setup event listeners for dynamic CSS updates
|
||||
*/
|
||||
private setupEventListeners;
|
||||
/**
|
||||
* Sync grid-related CSS variables from configuration
|
||||
*/
|
||||
private syncGridCSSVariables;
|
||||
/**
|
||||
* Sync workweek-related CSS variables
|
||||
*/
|
||||
private syncWorkweekCSSVariables;
|
||||
/**
|
||||
* Load configuration from JSON and create Configuration instance
|
||||
*/
|
||||
static load(): Promise<Configuration>;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue