@progress/kendo-react-dateinputs
Version:
KendoReact Date Inputs package
23 lines (22 loc) • 850 B
TypeScript
/// <reference types="react" />
import { ViewService } from '../models/ViewService';
import { IntlService } from '@progress/kendo-react-intl';
import { CalendarViewEnum } from '../models/CalendarViewEnum';
/**
* @hidden
*/
export declare class BusViewService {
private onViewChanged;
private bottom;
private top;
constructor(onViewChanged: any);
configure(bottom: CalendarViewEnum, top: CalendarViewEnum): void;
service(view: CalendarViewEnum, intl: IntlService): ViewService;
moveDown(view: CalendarViewEnum, event?: React.SyntheticEvent<any>): void;
moveUp(view: CalendarViewEnum, event?: React.SyntheticEvent<any>): void;
moveToBottom(activeView: CalendarViewEnum): void;
canMoveDown(view: CalendarViewEnum): boolean;
canMoveUp(view: CalendarViewEnum): boolean;
private clamp;
private move;
}