/** * 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 { AfterContentInit, ChangeDetectorRef, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core'; import { VtsConfigKey, VtsConfigService } from '@ui-vts-kit/ng-vts/core/config'; import { VtsBreakpointEnum, VtsBreakpointService } from '@ui-vts-kit/ng-vts/core/services'; import { BooleanInput } from '@ui-vts-kit/ng-vts/core/types'; import { VtsDescriptionsItemComponent } from './descriptions-item.component'; import { VtsDescriptionsItemRenderProps, VtsDescriptionsLayout, VtsDescriptionsSize } from './typings'; import * as i0 from "@angular/core"; export declare class VtsDescriptionsComponent implements OnChanges, OnDestroy, AfterContentInit, OnInit { vtsConfigService: VtsConfigService; private cdr; private breakpointService; private directionality; readonly _vtsModuleName: VtsConfigKey; static ngAcceptInputType_vtsBordered: BooleanInput; static ngAcceptInputType_vtsColon: BooleanInput; items: QueryList; vtsBordered: boolean; vtsLayout: VtsDescriptionsLayout; vtsColumn: number | { [key in VtsBreakpointEnum]: number; }; vtsSize: VtsDescriptionsSize; vtsTitle: string | TemplateRef; vtsExtra?: string | TemplateRef; vtsColon: boolean; itemMatrix: VtsDescriptionsItemRenderProps[][]; realColumn: number; dir: Direction; private breakpoint; private destroy$; constructor(vtsConfigService: VtsConfigService, cdr: ChangeDetectorRef, breakpointService: VtsBreakpointService, directionality: Directionality); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngAfterContentInit(): void; ngOnDestroy(): void; /** * Prepare the render matrix according to description items' spans. */ private prepareMatrix; private getColumn; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }