@daypilot/daypilot-lite-angular
Version:
DayPilot Lite for Angular
30 lines (29 loc) • 1.21 kB
TypeScript
import { AfterViewInit, DoCheck, OnDestroy, OnInit } from '@angular/core';
import { DayPilot } from "./core/daypilot-core";
import { OptionalSignal } from "./util";
import * as i0 from "@angular/core";
export declare class DayPilotMonthComponent implements OnInit, OnDestroy, AfterViewInit, DoCheck {
control: DayPilot.Month;
config: OptionalSignal<any>;
private _requestUpdateFull;
private _requestUpdateEvents;
private _hashOptions;
private _hashEvents;
private _eventsSet;
private _id;
private _events;
get events(): DayPilot.EventData[];
set events(value: OptionalSignal<DayPilot.EventData[]>);
private get configResolved();
get id(): string;
constructor();
ngOnInit(): void;
ngOnDestroy(): void;
ngAfterViewInit(): void;
ngDoCheck(): void;
private dispose;
private updateOptions;
private updateEvents;
static ɵfac: i0.ɵɵFactoryDeclaration<DayPilotMonthComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DayPilotMonthComponent, "daypilot-month", never, { "config": { "alias": "config"; "required": false; }; "events": { "alias": "events"; "required": false; }; }, {}, never, never, false, never>;
}