UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

31 lines (30 loc) 1.47 kB
/** * 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 { ElementRef, OnChanges, Renderer2 } from '@angular/core'; import { Subject } from 'rxjs'; import * as i0 from "@angular/core"; export declare class NzCellFixedDirective implements OnChanges { private renderer; private elementRef; nzRight: string | boolean; nzLeft: string | boolean; colspan: number | null; colSpan: number | null; changes$: Subject<void>; isAutoLeft: boolean; isAutoRight: boolean; isFixedLeft: boolean; isFixedRight: boolean; isFixed: boolean; setAutoLeftWidth(autoLeft: string | null): void; setAutoRightWidth(autoRight: string | null): void; setIsFirstRight(isFirstRight: boolean): void; setIsLastLeft(isLastLeft: boolean): void; private setFixClass; constructor(renderer: Renderer2, elementRef: ElementRef); ngOnChanges(): void; static ɵfac: i0.ɵɵFactoryDeclaration<NzCellFixedDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<NzCellFixedDirective, "td[nzRight],th[nzRight],td[nzLeft],th[nzLeft]", never, { "nzRight": { "alias": "nzRight"; "required": false; }; "nzLeft": { "alias": "nzLeft"; "required": false; }; "colspan": { "alias": "colspan"; "required": false; }; "colSpan": { "alias": "colSpan"; "required": false; }; }, {}, never, never, true, never>; }