@whitesev/pops
Version:
弹窗库,包含了alert、confirm、prompt、drawer、folder、loading、iframe、panel、tooltip、searchSuggestion、rightClickMenu组件
26 lines (24 loc) • 496 B
text/typescript
import type { PopsPanelGeneralConfig } from "./components-common";
import type { PopsPanelViewConfig } from ".";
/**
* pops.panel的 container
*/
export interface PopsPanelContainerConfig extends PopsPanelGeneralConfig<PopsPanelContainerConfig> {
/**
* 组件类型
*/
type: "container";
/**
* 显示在左边的文字
*/
text: string;
/**
* 是否进行折叠
* @default false
*/
isFold?: boolean;
/**
* 子配置
*/
views: PopsPanelViewConfig[];
}