ngx-surveys
Version:
Angular 18+ survey / form builder
26 lines (25 loc) • 1.26 kB
TypeScript
import { OnInit, EventEmitter } from '@angular/core';
import { FormItem, FormItemOptionItem, FormItemWidget } from '../form-item';
import * as i0 from "@angular/core";
export declare class FormItemRadio extends FormItem {
items: FormItemOptionItem[];
multiple: boolean;
value: string | string[];
hasOptions: boolean;
otherTextValue: string;
}
export declare class FormItemRadioComponent implements FormItemWidget, OnInit {
item: FormItemRadio;
editable: boolean;
changes: EventEmitter<FormItemRadio>;
explanationValue: string;
explanationLabel: string | undefined;
selectedOption: string;
constructor();
ngOnInit(): void;
onSelectionChange(value: string | string[]): void;
onExplanationValueChanges(val: string, selectedOptionVal: string | string[]): false | undefined;
isExplanationRequired(selectedOptionVal: string | string[]): boolean | undefined;
static ɵfac: i0.ɵɵFactoryDeclaration<FormItemRadioComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<FormItemRadioComponent, "ammo-form-item-radio", never, { "item": { "alias": "item"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; }, { "changes": "changes"; }, never, never, false, never>;
}