angular-jsf-components
Version:
JSF Compliant Angular Components
18 lines (15 loc) • 539 B
text/typescript
import {Component, ElementRef, Input} from '@angular/core';
import {HFormService} from '../../services/h-form.service';
import {JsfOutput} from '../../superclass/jsf-output';
({
selector: 'h-output-label',
templateUrl: './h-output-label.component.html',
styleUrls: ['./h-output-label.component.css'],
})
export class HOutputLabelComponent extends JsfOutput {
('for')
forId: string;
constructor(hFormService: HFormService, elementRef: ElementRef) {
super(hFormService, elementRef);
}
}