@cfstratos/ajsf-material
Version:
Angular JSON Schema Form builder using Angular Material UI
22 lines (21 loc) • 732 B
TypeScript
import { AbstractControl } from '@angular/forms';
import { OnInit } from '@angular/core';
import { JsonSchemaFormService } from '@cfstratos/ajsf-core';
export declare class MaterialInputComponent implements OnInit {
matFormFieldDefaultOptions: any;
matLabelGlobalOptions: any;
private jsf;
formControl: AbstractControl;
controlName: string;
controlValue: string;
controlDisabled: boolean;
boundControl: boolean;
options: any;
autoCompleteList: string[];
layoutNode: any;
layoutIndex: number[];
dataIndex: number[];
constructor(matFormFieldDefaultOptions: any, matLabelGlobalOptions: any, jsf: JsonSchemaFormService);
ngOnInit(): void;
updateValue(event: any): void;
}