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