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.13 kB
TypeScript
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;
form: any;
loading: Boolean;
formReady: Boolean;
editMode: Boolean;
constructor(service: FormManagerService, router: Router, route: ActivatedRoute, config: FormManagerConfig, ref: ChangeDetectorRef, alerts: FormioAlerts);
initBuilder(editing: any): any;
ngAfterViewInit(): void;
onDisplaySelect(event: any): void;
saveForm(): any;
onSave(): any;
}