angular-jsf-components
Version:
JSF Compliant Angular Components
37 lines (33 loc) • 1.2 kB
text/typescript
import {Component, ElementRef, forwardRef, ViewChild} from '@angular/core';
import {NG_VALUE_ACCESSOR, NgModel} from '@angular/forms';
import {HFormService} from '../../services/h-form.service';
import {MessageService} from '../../services/message.service';
import {JsfElement} from '../../superclass/jsf-element';
import {JsfInput} from '../../superclass/jsf-input';
export class HInputHiddenComponent extends JsfInput {
constructor(hFormService: HFormService, messageService: MessageService,
elementRef: ElementRef) {
super(hFormService, messageService, elementRef);
}
}