ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
20 lines (19 loc) • 746 B
TypeScript
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
import { OnChanges, OnInit } from '@angular/core';
import { DateHelperService } from 'ng-zorro-antd/i18n';
import { AbstractTable } from './abstract-table';
import { DateBodyRow, DateCell } from './interface';
export declare class MonthTableComponent extends AbstractTable implements OnChanges, OnInit {
private dateHelper;
MAX_ROW: number;
MAX_COL: number;
constructor(dateHelper: DateHelperService);
makeHeadRow(): DateCell[];
makeBodyRows(): DateBodyRow[];
private isDisabledMonth;
private addCellProperty;
private chooseMonth;
}