/** * 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 { EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core'; import { CandyDate } from 'ng-zorro-antd/core/time'; import { FunctionProp } from 'ng-zorro-antd/core/types'; import { NzCalendarI18nInterface } from 'ng-zorro-antd/i18n'; import { DateBodyRow, DateCell } from './interface'; import * as i0 from "@angular/core"; export declare abstract class AbstractTable implements OnInit, OnChanges { headRow: DateCell[]; bodyRows: DateBodyRow[]; MAX_ROW: number; MAX_COL: number; prefixCls: string; value: CandyDate; locale: NzCalendarI18nInterface; activeDate: CandyDate; showWeek: boolean; selectedValue: CandyDate[]; hoverValue: CandyDate[]; disabledDate?: (d: Date) => boolean; cellRender?: string | TemplateRef | FunctionProp | string>; fullCellRender?: string | TemplateRef | FunctionProp | string>; canSelectWeek: boolean; readonly valueChange: EventEmitter; readonly cellHover: EventEmitter; protected render(): void; hasRangeValue(): boolean; getClassMap(cell: DateCell): Record; abstract makeHeadRow(): DateCell[]; abstract makeBodyRows(): DateBodyRow[]; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; private isDateRealChange; private isSameDate; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; static ngAcceptInputType_showWeek: unknown; static ngAcceptInputType_canSelectWeek: unknown; }