quarter-table.component.d.ts 1012 B

12345678910111213141516171819202122
  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 { DateHelperService } from 'ng-zorro-antd/i18n';
  7. import { AbstractTable } from './abstract-table';
  8. import { DateBodyRow, DateCell } from './interface';
  9. import * as i0 from "@angular/core";
  10. export declare class QuarterTableComponent extends AbstractTable implements OnChanges, OnInit {
  11. private dateHelper;
  12. MAX_ROW: number;
  13. MAX_COL: number;
  14. constructor(dateHelper: DateHelperService);
  15. private changeValueFromInside;
  16. makeHeadRow(): DateCell[];
  17. makeBodyRows(): DateBodyRow[];
  18. private isDisabledQuarter;
  19. private addCellProperty;
  20. static ɵfac: i0.ɵɵFactoryDeclaration<QuarterTableComponent, never>;
  21. static ɵcmp: i0.ɵɵComponentDeclaration<QuarterTableComponent, "quarter-table", ["quarterTable"], {}, {}, never, never, true, never>;
  22. }