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

49 lines (48 loc) 1.99 kB
/** * @fileoverview added by tsickle * Generated from: formio.module.ts * @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 { ParseHtmlContentPipe } from './components/alerts/parse-html-content.pipe'; import { FormioAlertsComponent } from './components/alerts/formio.alerts.component'; import { FormioLoaderComponent } from './components/loader/formio.loader.component'; import { CustomTagsService } from './custom-component/custom-tags.service'; var FormioModule = /** @class */ (function () { function FormioModule() { } FormioModule.decorators = [ { type: NgModule, args: [{ declarations: [ FormioComponent, FormBuilderComponent, FormioLoaderComponent, FormioAlertsComponent, ParseHtmlContentPipe ], imports: [ CommonModule ], exports: [ FormioComponent, FormBuilderComponent, FormioLoaderComponent, FormioAlertsComponent ], providers: [ FormioAlerts, CustomTagsService ], entryComponents: [ FormioComponent, FormBuilderComponent ] },] }, ]; return FormioModule; }()); export { FormioModule };