stimulsoft-viewer-angular
Version:
Stimulsoft Viewer Angular
30 lines (29 loc) • 1.58 kB
TypeScript
import { OnInit, OnDestroy, AfterViewInit, EventEmitter } from '@angular/core';
import { ModelService } from '../services/model.service';
import { RadioButtonService } from '../services/radio-button.service';
import * as i0 from "@angular/core";
export declare class RadioButtonComponent implements OnInit, OnDestroy, AfterViewInit {
model: ModelService;
radioService: RadioButtonService;
action: EventEmitter<any>;
groupName: string;
name: string;
enabled: boolean;
checked: boolean;
tooltip: string;
caption: string;
margin: string;
paddingLeftLastCell: string;
over: boolean;
constructor(model: ModelService, radioService: RadioButtonService);
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngOnInit(): void;
mouseover(): void;
mouseout(): void;
click(): void;
uncheck(): void;
get outClass(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "sti-radio-button", never, { "groupName": { "alias": "groupName"; "required": false; }; "name": { "alias": "name"; "required": false; }; "enabled": { "alias": "enabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "paddingLeftLastCell": { "alias": "paddingLeftLastCell"; "required": false; }; }, { "action": "action"; }, never, ["*"], false, never>;
}