angular-formio
Version:
Form.io Angular JSON Form Renderer ========================== This library serves as a Dynamic JSON Powered Form rendering library for [Angular](https://angular.io). This works by providing a JSON schema to a ```<formio>``` Angular component, where that f
28 lines (27 loc) • 1 kB
JavaScript
/**
* @fileoverview added by tsickle
* Generated from: auth/login/login.component.ts
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
import { Component } from '@angular/core';
import { FormioAuthService } from '../auth.service';
var FormioAuthLoginComponent = /** @class */ (function () {
function FormioAuthLoginComponent(service) {
this.service = service;
}
FormioAuthLoginComponent.decorators = [
{ type: Component, args: [{
template: "<formio [src]=\"service.loginForm\" (submit)=\"service.onLoginSubmit($event)\"></formio> "
},] },
];
/** @nocollapse */
FormioAuthLoginComponent.ctorParameters = function () { return [
{ type: FormioAuthService }
]; };
return FormioAuthLoginComponent;
}());
export { FormioAuthLoginComponent };
if (false) {
/** @type {?} */
FormioAuthLoginComponent.prototype.service;
}