ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
31 lines (30 loc) • 1.39 kB
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 { AfterContentInit, AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit, QueryList, Renderer2, TemplateRef } from '@angular/core';
import { NzSafeAny } from 'ng-zorro-antd/core/types';
import { NzThAddOnComponent } from '../cell/th-addon.component';
import { NzTableDataService } from '../table-data.service';
import { NzTableStyleService } from '../table-style.service';
import { NzTrDirective } from './tr.directive';
export declare class NzTheadComponent implements AfterContentInit, OnDestroy, AfterViewInit, OnInit {
private elementRef;
private renderer;
private nzTableStyleService;
private nzTableDataService;
private destroy$;
isInsideTable: boolean;
templateRef: TemplateRef<NzSafeAny>;
listOfNzTrDirective: QueryList<NzTrDirective>;
listOfNzThAddOnComponent: QueryList<NzThAddOnComponent>;
readonly nzSortOrderChange: EventEmitter<{
key: NzSafeAny;
value: string | null;
}>;
constructor(elementRef: ElementRef, renderer: Renderer2, nzTableStyleService: NzTableStyleService, nzTableDataService: NzTableDataService);
ngOnInit(): void;
ngAfterContentInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
}