angular-bootstrap-italia
Version:
<p align="center"> <h1 align="center">Bootstrap Italia + Angular 9</h1>
21 lines (20 loc) • 704 B
TypeScript
import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
import { FormGroup } from '@angular/forms';
import { Subscription } from 'rxjs';
import { FormBase } from '../../form/form-base';
export declare class DynamicFormElementComponent implements OnInit, OnDestroy {
field: FormBase<string>;
form: FormGroup;
parentField: FormBase<string>;
newInsertEvent: EventEmitter<any>;
parentSubscription: Subscription;
parentValue: object;
constructor();
ngOnInit(): void;
ngOnDestroy(): void;
get isValid(): boolean;
get isTouched(): boolean;
get isDirty(): boolean;
get isPristine(): boolean;
emitNewInsert(event: any): void;
}