@progress/kendo-angular-dateinputs
Version:
Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).
21 lines (20 loc) • 930 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { EventEmitter } from '@angular/core';
import { CalendarComponent } from '../calendar/calendar.component';
import { DateInputComponent } from '../dateinput/dateinput.component';
import { TimeSelectorComponent } from '../timepicker/timeselector.component';
/**
* @hidden
*/
export declare class PickerService {
onFocus: EventEmitter<any>;
onBlur: EventEmitter<any>;
sameDateSelected: EventEmitter<any>;
dateCompletenessChange: EventEmitter<any>;
calendar: CalendarComponent;
input: DateInputComponent;
timeSelector: TimeSelectorComponent;
}