igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
291 lines (290 loc) • 7.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 CheckboxDescription = /*@__PURE__*/ (() => {
class CheckboxDescription extends Description {
constructor() {
super();
this.at = null;
this.a2 = null;
this.ap = null;
this.av = null;
this.a1 = null;
this.ao = null;
this.a3 = null;
this.aw = null;
this.aq = null;
this.an = null;
this.z = 0;
this.w = 0;
this.aa = 0;
this.ab = 0;
this.y = 0;
this.x = 0;
this.am = null;
this.ay = null;
this.ax = null;
this.az = null;
this.aj = 0;
this.ai = 0;
this.as = null;
this.ar = null;
this.a4 = null;
this.o = false;
this.a0 = null;
this.m = false;
this.k = false;
this.p = false;
this.l = false;
this.n = false;
this.au = null;
}
get_type() {
return "Checkbox";
}
get type() {
return this.get_type();
}
get baseTheme() {
return this.at;
}
set baseTheme(a) {
this.at = a;
this.j("BaseTheme");
}
get uncheckedBackgroundColor() {
return this.a2;
}
set uncheckedBackgroundColor(a) {
this.a2 = a;
this.j("UncheckedBackgroundColor");
}
get actualUncheckedBackgroundColor() {
return this.ap;
}
set actualUncheckedBackgroundColor(a) {
this.ap = a;
this.j("ActualUncheckedBackgroundColor");
}
get checkedBackgroundColor() {
return this.av;
}
set checkedBackgroundColor(a) {
this.av = a;
this.j("CheckedBackgroundColor");
}
get tickColor() {
return this.a1;
}
set tickColor(a) {
this.a1 = a;
this.j("TickColor");
}
get actualTickColor() {
return this.ao;
}
set actualTickColor(a) {
this.ao = a;
this.j("ActualTickColor");
}
get uncheckedBorderColor() {
return this.a3;
}
set uncheckedBorderColor(a) {
this.a3 = a;
this.j("UncheckedBorderColor");
}
get checkedBorderColor() {
return this.aw;
}
set checkedBorderColor(a) {
this.aw = a;
this.j("CheckedBorderColor");
}
get actualUncheckedBorderColor() {
return this.aq;
}
set actualUncheckedBorderColor(a) {
this.aq = a;
this.j("ActualUncheckedBorderColor");
}
get actualCheckedBorderColor() {
return this.an;
}
set actualCheckedBorderColor(a) {
this.an = a;
this.j("ActualCheckedBorderColor");
}
get borderWidth() {
return this.z;
}
set borderWidth(a) {
this.z = a;
this.j("BorderWidth");
}
get actualBorderWidth() {
return this.w;
}
set actualBorderWidth(a) {
this.w = a;
this.j("ActualBorderWidth");
}
get cornerRadius() {
return this.aa;
}
set cornerRadius(a) {
this.aa = a;
this.j("CornerRadius");
}
get tickStrokeWidth() {
return this.ab;
}
set tickStrokeWidth(a) {
this.ab = a;
this.j("TickStrokeWidth");
}
get actualTickStrokeWidth() {
return this.y;
}
set actualTickStrokeWidth(a) {
this.y = a;
this.j("ActualTickStrokeWidth");
}
get actualCornerRadius() {
return this.x;
}
set actualCornerRadius(a) {
this.x = a;
this.j("ActualCornerRadius");
}
get actualCheckedBackgroundColor() {
return this.am;
}
set actualCheckedBackgroundColor(a) {
this.am = a;
this.j("ActualCheckedBackgroundColor");
}
get inputId() {
return this.ay;
}
set inputId(a) {
this.ay = a;
this.j("InputId");
}
get id() {
return this.ax;
}
set id(a) {
this.ax = a;
this.j("Id");
}
get labelId() {
return this.az;
}
set labelId(a) {
this.az = a;
this.j("LabelId");
}
get tabIndex() {
return this.aj;
}
set tabIndex(a) {
this.aj = a;
this.j("TabIndex");
}
get required() {
return this.ai;
}
set required(a) {
this.ai = a;
this.j("Required");
}
get ariaLabelledBy() {
return this.as;
}
set ariaLabelledBy(a) {
this.as = a;
this.j("AriaLabelledBy");
}
get ariaLabel() {
return this.ar;
}
set ariaLabel(a) {
this.ar = a;
this.j("AriaLabel");
}
get valueRef() {
return this.a4;
}
set valueRef(a) {
this.a4 = a;
this.j("ValueRef");
}
get focused() {
return this.o;
}
set focused(a) {
this.o = a;
this.j("Focused");
}
get labelPosition() {
return this.a0;
}
set labelPosition(a) {
this.a0 = a;
this.j("LabelPosition");
}
get disableRipple() {
return this.m;
}
set disableRipple(a) {
this.m = a;
this.j("DisableRipple");
}
get checked() {
return this.k;
}
set checked(a) {
this.k = a;
this.j("Checked");
}
get indeterminate() {
return this.p;
}
set indeterminate(a) {
this.p = a;
this.j("Indeterminate");
}
get disabled() {
return this.l;
}
set disabled(a) {
this.l = a;
this.j("Disabled");
}
get disableTransitions() {
return this.n;
}
set disableTransitions(a) {
this.n = a;
this.j("DisableTransitions");
}
get changeRef() {
return this.au;
}
set changeRef(a) {
this.au = a;
this.j("ChangeRef");
}
}
CheckboxDescription.$t = markType(CheckboxDescription, 'CheckboxDescription', Description.$);
return CheckboxDescription;
})();