model-form
Version:
Dynamic Form Builder for Anuglar 5 and the WAR Framework
17 lines • 701 B
JavaScript
import { Component } from '@angular/core';
var InputComponent = (function () {
function InputComponent() {
}
InputComponent.decorators = [
{ type: Component, args: [{
selector: 'model-input',
template: "\n <div class=\"dynamic-field form-input form-group\" [formGroup]=\"group\">\n <label>{{map.name}}</label>\n <input type=\"text\" [formControlName]=\"map.name\" />\n </div>\n ",
styles: []
},] },
];
/** @nocollapse */
InputComponent.ctorParameters = function () { return []; };
return InputComponent;
}());
export { InputComponent };
//# sourceMappingURL=input.component.js.map