app/@overflow/commons/ui/component/primeng/dropdown-panel.component.ts
crusader 0be9c89d35 ing
2018-08-18 10:04:59 +09:00

31 lines
624 B
TypeScript

import { Component, Input, ContentChild } from '@angular/core';
import { Header, Footer } from 'primeng/primeng';
@Component({
selector: 'of-p-dropdownPanel',
templateUrl: './dropdown-panel.component.html',
styleUrls: ['./dropdown-panel.component.scss'],
})
export class DropdownPanelComponent {
@Input() blockTarget: any;
@Input() style: any;
@Input() styleClass: string;
@Input() headerStyle: any;
@Input() headerStyleClass: string;
@Input() footerStyle: any;
@Input() footerStyleClass: string;
@ContentChild(Header) headerFacet;
@ContentChild(Footer) footerFacet;
constructor() { }
}