angular-jsf-components
Version:
JSF Compliant Angular Components
23 lines (19 loc) • 742 B
text/typescript
import {Component, ContentChildren, ElementRef, Input, QueryList,} from '@angular/core';
import {HFormService} from '../../services/h-form.service';
import {JsfElement} from '../../superclass/jsf-element';
import {FFacetComponent} from '../f-facet/f-facet.component';
({
selector: 'h-panel-grid',
templateUrl: './h-panel-grid.component.html',
styleUrls: ['./h-panel-grid.component.css'],
})
export class HPanelGridComponent extends JsfElement {
// has no real usage for now
()
columns: number;
(FFacetComponent)
private facets: QueryList<FFacetComponent>;
constructor(hFormService: HFormService, elementRef: ElementRef) {
super(hFormService, elementRef);
}
}