UNPKG

ng-zorro-antd

Version:

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

38 lines (37 loc) 1.97 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 { Directionality } from '@angular/cdk/bidi'; import { ChangeDetectorRef, ComponentFactory, ComponentFactoryResolver, ElementRef, EventEmitter, Renderer2, ViewContainerRef } from '@angular/core'; import { NzConfigKey, NzConfigService } from 'ng-zorro-antd/core/config'; import { NzNoAnimationDirective } from 'ng-zorro-antd/core/no-animation'; import { NgStyleInterface, NzTSType } from 'ng-zorro-antd/core/types'; import { NzTooltipBaseDirective, NzToolTipComponent, NzTooltipTrigger, PropertyMapping } from 'ng-zorro-antd/tooltip'; export declare class NzPopoverDirective extends NzTooltipBaseDirective { noAnimation?: NzNoAnimationDirective | undefined; readonly _nzModuleName: NzConfigKey; title?: NzTSType; content?: NzTSType; directiveTitle?: NzTSType | null; trigger?: NzTooltipTrigger; placement?: string | string[]; origin?: ElementRef<HTMLElement>; visible?: boolean; mouseEnterDelay?: number; mouseLeaveDelay?: number; overlayClassName?: string; overlayStyle?: NgStyleInterface; nzPopoverBackdrop?: boolean; readonly visibleChange: EventEmitter<boolean>; componentFactory: ComponentFactory<NzPopoverComponent>; protected getProxyPropertyMap(): PropertyMapping; constructor(elementRef: ElementRef, hostView: ViewContainerRef, resolver: ComponentFactoryResolver, renderer: Renderer2, noAnimation?: NzNoAnimationDirective | undefined, nzConfigService?: NzConfigService); } export declare class NzPopoverComponent extends NzToolTipComponent { noAnimation?: NzNoAnimationDirective | undefined; _prefix: string; constructor(cdr: ChangeDetectorRef, directionality: Directionality, noAnimation?: NzNoAnimationDirective | undefined); get hasBackdrop(): boolean; protected isEmpty(): boolean; }