ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
17 lines (16 loc) • 570 B
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
import { NzCalendarI18nInterface } from '../../../i18n/nz-i18n.interface';
import { CandyDate } from '../candy-date';
export declare class MonthPanelComponent implements OnInit {
locale: NzCalendarI18nInterface;
value: CandyDate;
readonly valueChange: EventEmitter<CandyDate>;
disabledDate: (date: Date) => boolean;
readonly yearPanelShow: EventEmitter<void>;
prefixCls: string;
constructor();
ngOnInit(): void;
previousYear(): void;
nextYear(): void;
private gotoYear;
}