angular2-json-schema-form
Version:
Angular JSON Schema Form builder
23 lines (22 loc) • 705 B
TypeScript
import { OnInit } from '@angular/core';
import { AbstractControl } from '@angular/forms';
import { JsonSchemaFormService } from '../../json-schema-form.service';
export declare class FlexLayoutSectionComponent implements OnInit {
private jsf;
formControl: AbstractControl;
controlName: string;
controlValue: any;
controlDisabled: boolean;
boundControl: boolean;
options: any;
expanded: boolean;
containerType: string;
layoutNode: any;
layoutIndex: number[];
dataIndex: number[];
constructor(jsf: JsonSchemaFormService);
readonly sectionTitle: string;
ngOnInit(): void;
toggleExpanded(): void;
getFlexAttribute(attribute: string): any;
}