ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
40 lines (39 loc) • 1.77 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 { Direction, Directionality } from '@angular/cdk/bidi';
import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core';
import { NzConfigKey, NzConfigService } from 'ng-zorro-antd/core/config';
import { BooleanInput, NgStyleInterface, NzSizeDSType } from 'ng-zorro-antd/core/types';
import { NzCardGridDirective } from './card-grid.directive';
import { NzCardTabComponent } from './card-tab.component';
export declare class NzCardComponent implements OnDestroy, OnInit {
nzConfigService: NzConfigService;
private cdr;
private elementRef;
private directionality;
readonly _nzModuleName: NzConfigKey;
static ngAcceptInputType_nzBordered: BooleanInput;
static ngAcceptInputType_nzBorderless: BooleanInput;
static ngAcceptInputType_nzLoading: BooleanInput;
static ngAcceptInputType_nzHoverable: BooleanInput;
nzBordered: boolean;
nzBorderless: boolean;
nzLoading: boolean;
nzHoverable: boolean;
nzBodyStyle: NgStyleInterface | null;
nzCover?: TemplateRef<void>;
nzActions: Array<TemplateRef<void>>;
nzType: string | 'inner' | null;
nzSize: NzSizeDSType;
nzTitle?: string | TemplateRef<void>;
nzExtra?: string | TemplateRef<void>;
listOfNzCardTabComponent?: NzCardTabComponent;
listOfNzCardGridDirective: QueryList<NzCardGridDirective>;
dir: Direction;
private destroy$;
constructor(nzConfigService: NzConfigService, cdr: ChangeDetectorRef, elementRef: ElementRef, directionality: Directionality);
ngOnInit(): void;
ngOnDestroy(): void;
}