UNPKG

ngx-pluto

Version:
33 lines (32 loc) 937 B
import { OnInit } from "@angular/core"; import { NpPanelFooterDirective } from "./panel-footer.directive"; import { NpPanelHeaderDirective } from "./panel-header.directive"; import { NpPanelBodyDirective } from "./panel-body.directive"; /** * panel组件 * * <example-url>https://stackblitz.com/edit/angular-hmkf7x?embed=1&file=src/app/app.component.html</example-url> */ export declare class NpPanel implements OnInit { /** * 面板主标题 */ title: string; /** * 面板副标题 - 常用于对主标题的解释描述等,在主标题右侧展示。 */ subTitle: string; /** * 面板背景色 */ bgColor: string; /** * 面板圆角 */ panelRadius: number; npPanelHeader: NpPanelHeaderDirective; npPanelBody: NpPanelBodyDirective; npPanelFooter: NpPanelFooterDirective; constructor(); ngOnInit(): void; }