Some ignored filles was missing
This commit is contained in:
parent
7db22245e2
commit
fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions
31
wwwroot/js/managers/DragHoverManager.d.ts
vendored
Normal file
31
wwwroot/js/managers/DragHoverManager.d.ts
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
* DragHoverManager - Handles event hover tracking
|
||||
* Fully autonomous - listens to mouse events and manages hover state independently
|
||||
*/
|
||||
import { IEventBus } from '../types/CalendarTypes';
|
||||
export declare class DragHoverManager {
|
||||
private eventBus;
|
||||
private isHoverTrackingActive;
|
||||
private currentHoveredEvent;
|
||||
private calendarContainer;
|
||||
constructor(eventBus: IEventBus);
|
||||
private init;
|
||||
private setupEventListeners;
|
||||
/**
|
||||
* Handle mouse enter on swp-event - activate hover tracking
|
||||
*/
|
||||
private handleEventMouseEnter;
|
||||
/**
|
||||
* Check if mouse is still over the currently hovered event
|
||||
*/
|
||||
private checkEventHover;
|
||||
/**
|
||||
* Clear hover state
|
||||
*/
|
||||
private clearEventHover;
|
||||
/**
|
||||
* Deactivate hover tracking and clear any current hover
|
||||
* Called via event bus when drag starts
|
||||
*/
|
||||
private deactivateTracking;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue