UNPKG

angular-formio-proyectoscolfuturo

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 tha

27 lines (26 loc) 1.13 kB
import { ElementRef, AfterViewInit, ChangeDetectorRef } from '@angular/core'; import { FormManagerService } from '../form-manager.service'; import { ActivatedRoute, Router } from '@angular/router'; import { FormManagerConfig } from '../form-manager.config'; import { FormioAlerts } from '../../components/alerts/formio.alerts'; import { FormBuilderComponent } from '../../components/formbuilder/formbuilder.component'; export declare class FormManagerEditComponent implements AfterViewInit { service: FormManagerService; router: Router; route: ActivatedRoute; config: FormManagerConfig; ref: ChangeDetectorRef; alerts: FormioAlerts; builder: FormBuilderComponent; formTitle: ElementRef; formType: ElementRef; builderReady: Promise<any>; form: any; loading: Boolean; formReady: Boolean; editMode: Boolean; constructor(service: FormManagerService, router: Router, route: ActivatedRoute, config: FormManagerConfig, ref: ChangeDetectorRef, alerts: FormioAlerts); checkBuilder(cb: any): any; ngAfterViewInit(): void; onSave(): void; }