/** * 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 { Directionality } from '@angular/cdk/bidi'; import { ChangeDetectorRef, ComponentFactoryResolver, ComponentRef, ElementRef, EventEmitter, OnDestroy, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core'; import { VtsButtonType } from '@ui-vts-kit/ng-vts/button'; import { VtsConfigKey, VtsConfigService } from '@ui-vts-kit/ng-vts/core/config'; import { VtsNoAnimationDirective } from '@ui-vts-kit/ng-vts/core/no-animation'; import { BooleanInput, NgStyleInterface, VtsTSType } from '@ui-vts-kit/ng-vts/core/types'; import { VtsTooltipBaseDirective, VtsToolTipComponent, VtsTooltipTrigger, PropertyMapping } from '@ui-vts-kit/ng-vts/tooltip'; import { Subject } from 'rxjs'; import * as i0 from "@angular/core"; export declare class VtsPopconfirmDirective extends VtsTooltipBaseDirective { readonly _vtsModuleName: VtsConfigKey; static ngAcceptInputType_vtsCondition: BooleanInput; static ngAcceptInputType_vtsPopconfirmShowArrow: BooleanInput; title?: VtsTSType; directiveTitle?: VtsTSType | null; trigger?: VtsTooltipTrigger; placement?: string | string[]; origin?: ElementRef; mouseEnterDelay?: number; mouseLeaveDelay?: number; overlayClassName?: string; overlayStyle?: NgStyleInterface; visible?: boolean; vtsOkText?: string; vtsOkType?: string; vtsCancelText?: string; vtsIcon?: string | TemplateRef; vtsCondition: boolean; vtsPopconfirmShowArrow: boolean; vtsPopconfirmBackdrop?: boolean; readonly visibleChange: EventEmitter; readonly vtsOnCancel: EventEmitter; readonly vtsOnConfirm: EventEmitter; protected readonly componentRef: ComponentRef; protected getProxyPropertyMap(): PropertyMapping; constructor(elementRef: ElementRef, hostView: ViewContainerRef, resolver: ComponentFactoryResolver, renderer: Renderer2, noAnimation?: VtsNoAnimationDirective, vtsConfigService?: VtsConfigService); /** * @override */ protected createComponent(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class VtsPopconfirmComponent extends VtsToolTipComponent implements OnDestroy { vtsCancelText?: string; vtsCondition: boolean; vtsPopconfirmShowArrow: boolean; vtsIcon?: string | TemplateRef; vtsOkText?: string; vtsOkType: VtsButtonType; readonly vtsOnCancel: Subject; readonly vtsOnConfirm: Subject; protected _trigger: VtsTooltipTrigger; _prefix: string; constructor(cdr: ChangeDetectorRef, directionality: Directionality, noAnimation?: VtsNoAnimationDirective); ngOnDestroy(): void; /** * @override */ show(): void; onCancel(): void; onConfirm(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }