UNPKG

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

46 lines (45 loc) 1.81 kB
/** * @fileoverview added by tsickle * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormioComponent } from './components/formio/formio.component'; import { FormBuilderComponent } from './components/formbuilder/formbuilder.component'; import { FormioAlerts } from './components/alerts/formio.alerts'; import { FormioAlertsComponent } from './components/alerts/formio.alerts.component'; import { FormioLoader } from './components/loader/formio.loader'; import { FormioLoaderComponent } from './components/loader/formio.loader.component'; var FormioModule = /** @class */ (function () { function FormioModule() { } FormioModule.decorators = [ { type: NgModule, args: [{ declarations: [ FormioComponent, FormBuilderComponent, FormioLoaderComponent, FormioAlertsComponent ], imports: [ CommonModule ], exports: [ FormioComponent, FormBuilderComponent, FormioLoaderComponent, FormioAlertsComponent ], providers: [ FormioLoader, FormioAlerts ], entryComponents: [ FormioComponent, FormBuilderComponent ] },] }, ]; return FormioModule; }()); export { FormioModule };