month-table.component.d.ts 886 B

1234567891011121314151617181920
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. import { OnChanges, OnInit } from '@angular/core';
  6. import { AbstractTable } from './abstract-table';
  7. import { DateBodyRow, DateCell } from './interface';
  8. import * as i0 from "@angular/core";
  9. export declare class MonthTableComponent extends AbstractTable implements OnChanges, OnInit {
  10. MAX_ROW: number;
  11. MAX_COL: number;
  12. private dateHelper;
  13. makeHeadRow(): DateCell[];
  14. makeBodyRows(): DateBodyRow[];
  15. private isDisabledMonth;
  16. private addCellProperty;
  17. private chooseMonth;
  18. static ɵfac: i0.ɵɵFactoryDeclaration<MonthTableComponent, never>;
  19. static ɵcmp: i0.ɵɵComponentDeclaration<MonthTableComponent, "month-table", ["monthTable"], {}, {}, never, never, true, never>;
  20. }