@zajsf/material
Version:
Angular JSON Schema Form builder using Angular Material UI
25 lines (24 loc) • 1.12 kB
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { AbstractControl } from '@angular/forms';
import { JsonSchemaFormService } from '@zajsf/core';
import { Subscription } from 'rxjs';
import * as i0 from "@angular/core";
export declare class MaterialButtonComponent implements OnInit, OnDestroy {
private jsf;
formControl: AbstractControl;
controlName: string;
controlValue: any;
controlDisabled: boolean;
boundControl: boolean;
options: any;
layoutNode: any;
layoutIndex: number[];
dataIndex: number[];
isValidChangesSubs: Subscription;
constructor(jsf: JsonSchemaFormService);
ngOnDestroy(): void;
ngOnInit(): void;
updateValue(event: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialButtonComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<MaterialButtonComponent, "material-button-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
}