UNPKG

@clr/angular

Version:

Angular components for Clarity

29 lines (28 loc) 1.73 kB
import { AfterContentInit, ElementRef, QueryList } from '@angular/core'; import { ClrAbstractContainer } from '../common/abstract-container'; import { IfControlStateService } from '../common/if-control-state/if-control-state.service'; import { ControlClassService } from '../common/providers/control-class.service'; import { LayoutService } from '../common/providers/layout.service'; import { NgControlService } from '../common/providers/ng-control.service'; import { ClrRadio } from './radio'; import * as i0 from "@angular/core"; export declare class ClrRadioContainer extends ClrAbstractContainer implements AfterContentInit { protected layoutService: LayoutService; protected controlClassService: ControlClassService; protected ngControlService: NgControlService; protected ifControlStateService: IfControlStateService; role: string; ariaLabelledBy: string; radios: QueryList<ClrRadio>; groupLabel: ElementRef<HTMLElement>; private inline; private _generatedId; constructor(layoutService: LayoutService, controlClassService: ControlClassService, ngControlService: NgControlService, ifControlStateService: IfControlStateService); get clrInline(): boolean | string; set clrInline(value: boolean | string); ngAfterContentInit(): void; private setAriaRoles; private setAriaLabelledBy; static ɵfac: i0.ɵɵFactoryDeclaration<ClrRadioContainer, [{ optional: true; }, null, null, null]>; static ɵcmp: i0.ɵɵComponentDeclaration<ClrRadioContainer, "clr-radio-container", never, { "clrInline": "clrInline"; }, {}, ["groupLabel", "radios"], ["label", "clr-radio-wrapper", "clr-control-helper", "clr-control-error", "clr-control-success"], false, never>; }