import { ProvidersService } from 'fccore2'; import { FcinputComponent } from '../fcinput'; /** * fc-popover气泡 * * 点击/鼠标移入元素,弹出气泡式的卡片浮层。 * * 当目标元素有进一步的描述和相关操作时,可以收纳到卡片中,根据用户的操 作行为进行展现。 * * 和 Tooltip 的区别是,用户可以对浮层上的元素进行操作,因此它可以承载更复 杂的内容,比如链接或按钮等。 * */ export declare class FcpopoverComponent extends FcinputComponent { provider: ProvidersService; /** 标题*/ fcTitle: string; /** 内容*/ fcValue: string; /** 触发方式*/ fcTrigger: string; /** 是否关闭*/ fcShowClose: string; _showClose: boolean; /** 显示位置*/ fcPosition: string; /**气泡大小*/ fcSize: string; /**气泡内容*/ fcPopoverContent: string; /**owenrcontent*/ fcType: string; /**图标*/ fcIcon: string; /**气泡内容关闭标签*/ fcPopoverIcon: string; content: any; visible: boolean; constructor(provider: ProvidersService); ngOnChanges(param: any): void; /**点击不显示*/ clickMe(): void; _afterParentInit(): void; }