UNPKG

ng-zorro-antd

Version:

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

26 lines (25 loc) 1.4 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 { ChangeDetectorRef, ComponentFactory, ComponentFactoryResolver, ElementRef, Renderer2, ViewContainerRef } from '@angular/core'; import { NzNoAnimationDirective } from 'ng-zorro-antd/core/no-animation'; import { NzTSType } from 'ng-zorro-antd/core/types'; import { NzTooltipBaseDirective, NzToolTipComponent, NzTooltipTrigger } from 'ng-zorro-antd/tooltip'; export declare class NzPopoverDirective extends NzTooltipBaseDirective { noAnimation?: NzNoAnimationDirective | undefined; specificTitle?: NzTSType; specificContent?: NzTSType; directiveNameTitle?: NzTSType | null; specificTrigger?: NzTooltipTrigger; specificPlacement?: string; specificOrigin?: ElementRef<HTMLElement>; componentFactory: ComponentFactory<NzPopoverComponent>; constructor(elementRef: ElementRef, hostView: ViewContainerRef, resolver: ComponentFactoryResolver, renderer: Renderer2, noAnimation?: NzNoAnimationDirective | undefined); } export declare class NzPopoverComponent extends NzToolTipComponent { noAnimation?: NzNoAnimationDirective | undefined; _prefix: string; constructor(cdr: ChangeDetectorRef, noAnimation?: NzNoAnimationDirective | undefined); protected isEmpty(): boolean; }