UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

115 lines (114 loc) 3.19 kB
/* 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 WebCheckboxBaseDescription = /*@__PURE__*/ (() => { class WebCheckboxBaseDescription extends Description { constructor() { super(); this.s = null; this.t = null; this.g = false; this.f = false; this.i = false; this.h = false; this.r = null; this.n = null; this.p = null; this.q = null; this.o = null; } get_type() { return "WebCheckboxBase"; } get type() { return this.get_type(); } get name() { return this.s; } set name(a) { this.s = a; this.e("Name"); } get value() { return this.t; } set value(a) { this.t = a; this.e("Value"); } get disabled() { return this.g; } set disabled(a) { this.g = a; this.e("Disabled"); } get checked() { return this.f; } set checked(a) { this.f = a; this.e("Checked"); } get required() { return this.i; } set required(a) { this.i = a; this.e("Required"); } get invalid() { return this.h; } set invalid(a) { this.h = a; this.e("Invalid"); } get labelPosition() { return this.r; } set labelPosition(a) { this.r = a; this.e("LabelPosition"); } get ariaLabelledby() { return this.n; } set ariaLabelledby(a) { this.n = a; this.e("AriaLabelledby"); } get changeRef() { return this.p; } set changeRef(a) { this.p = a; this.e("ChangeRef"); } get focusRef() { return this.q; } set focusRef(a) { this.q = a; this.e("FocusRef"); } get blurRef() { return this.o; } set blurRef(a) { this.o = a; this.e("BlurRef"); } } WebCheckboxBaseDescription.$t = markType(WebCheckboxBaseDescription, 'WebCheckboxBaseDescription', Description.$); return WebCheckboxBaseDescription; })();