import { ElementRef, OnInit } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import { CalendarEventFull } from '../../calendar-modal/calendar-event/calendar-event-full'; import { CalendarView } from '../../calendar-modal/calendar-view/calendar-view'; import { CalendarEventDialogeService } from '../../service/calendar-event-dialog.service'; import { CalendarEventService } from '../../service/calendar-event.service'; import * as i0 from "@angular/core"; /** * @author vaibhav * calendar event full view component is use to display events on day/week view */ export declare class CalendarEventFullViewComponent implements OnInit { private store; private _element; private calendarEventService; private calendarEventDialogService; dialog: MatDialog; eventfullviewRef?: ElementRef; event?: CalendarEventFull; width?: number; _view$?: Observable; _view?: CalendarView; time?: string; constructor(store: Store<{ _view: CalendarView; }>, _element: ElementRef, calendarEventService: CalendarEventService, calendarEventDialogService: CalendarEventDialogeService, dialog: MatDialog); ngOnInit(): void; /** * open mat-dialoge to display event content */ openEventDialog(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }