@ng-ui-libraries/forms
Version:
25 lines (24 loc) • 778 B
TypeScript
import { OnInit, OnDestroy, Injector } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';
import { FormConfig } from '../../Service/FormConfig';
import { NgFormControl } from '../NgFormControl';
export declare class RadioGroupComponent extends NgFormControl<any> implements OnInit, OnDestroy {
injector: Injector;
config: FormConfig;
state: string;
name: string;
label: string;
disabled: boolean;
bindLabel: string;
bindValue: string;
required: boolean;
direction: 'horizontal' | 'vertical';
parentFormControl: FormControl;
parentFormGroup: FormGroup;
options: {
label: string;
value: any;
}[];
identifier: string;
constructor(injector: Injector, config: FormConfig);
}