@ajsf/core
Version:
Angular JSON Schema Form builder core
25 lines (24 loc) • 964 B
TypeScript
import { AbstractControl } from '@angular/forms';
import { isArray } from '../shared';
import { OnInit } from '@angular/core';
import { JsonSchemaFormService } from '../json-schema-form.service';
import * as i0 from "@angular/core";
export declare class SelectComponent implements OnInit {
private jsf;
formControl: AbstractControl;
controlName: string;
controlValue: any;
controlDisabled: boolean;
boundControl: boolean;
options: any;
selectList: any[];
isArray: typeof isArray;
layoutNode: any;
layoutIndex: number[];
dataIndex: number[];
constructor(jsf: JsonSchemaFormService);
ngOnInit(): void;
updateValue(event: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "select-widget", never, { "layoutNode": "layoutNode"; "layoutIndex": "layoutIndex"; "dataIndex": "dataIndex"; }, {}, never, never, false>;
}