wfw-ngx-formly
Version:
ngx-formly is an Angular 2 module which has a Components to help customize and render JavaScript/JSON configured forms. The formly-form Component and the FormlyConfig service are very powerful and bring unmatched maintainability to your application's form
17 lines (16 loc) • 605 B
TypeScript
import { ElementRef, OnChanges, SimpleChanges, Renderer2 } from '@angular/core';
import { FormlyFieldConfig } from './formly.field.config';
export declare class FormlyAttributes implements OnChanges {
private renderer;
private elementRef;
field: FormlyFieldConfig;
private attributes;
private statements;
onFocus(): void;
onBlur(): void;
constructor(renderer: Renderer2, elementRef: ElementRef);
ngOnChanges(changes: SimpleChanges): void;
private getPropValue(field, prop);
private getStatementValue(statement);
private canApplyRender(fieldChange, prop);
}