angular-formio
Version:
The Form.io dynamic form and data management system for Angular.
19 lines • 759 B
JavaScript
import { Component } from '@angular/core';
import { FormioAuthService } from './auth.service';
var FormioAuthRegisterComponent = /** @class */ (function () {
function FormioAuthRegisterComponent(service) {
this.service = service;
}
FormioAuthRegisterComponent.decorators = [
{ type: Component, args: [{
template: '<formio [src]="service.registerForm" (submit)="service.onRegisterSubmit($event)"></formio>'
},] },
];
/** @nocollapse */
FormioAuthRegisterComponent.ctorParameters = function () { return [
{ type: FormioAuthService, },
]; };
return FormioAuthRegisterComponent;
}());
export { FormioAuthRegisterComponent };
//# sourceMappingURL=register.component.js.map