igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
107 lines (106 loc) • 2.96 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebRadioDescription = /*@__PURE__*/ (() => {
class WebRadioDescription extends Description {
constructor() {
super();
this.y = null;
this.k = false;
this.x = null;
this.m = false;
this.o = false;
this.l = false;
this.n = false;
this.v = null;
this.w = null;
this.u = null;
}
get_type() {
return "WebRadio";
}
get type() {
return this.get_type();
}
get value() {
return this.y;
}
set value(a) {
this.y = a;
this.j("Value");
}
get checked() {
return this.k;
}
set checked(a) {
this.k = a;
this.j("Checked");
}
get labelPosition() {
return this.x;
}
set labelPosition(a) {
this.x = a;
this.j("LabelPosition");
}
get disabled() {
return this.m;
}
set disabled(a) {
this.m = a;
this.j("Disabled");
}
get required() {
return this.o;
}
set required(a) {
this.o = a;
this.j("Required");
}
get defaultChecked() {
return this.l;
}
set defaultChecked(a) {
this.l = a;
this.j("DefaultChecked");
}
get invalid() {
return this.n;
}
set invalid(a) {
this.n = a;
this.j("Invalid");
}
get changeRef() {
return this.v;
}
set changeRef(a) {
this.v = a;
this.j("ChangeRef");
}
get focusRef() {
return this.w;
}
set focusRef(a) {
this.w = a;
this.j("FocusRef");
}
get blurRef() {
return this.u;
}
set blurRef(a) {
this.u = a;
this.j("BlurRef");
}
}
WebRadioDescription.$t = markType(WebRadioDescription, 'WebRadioDescription', Description.$);
return WebRadioDescription;
})();