UNPKG

igniteui-react-core

Version:
104 lines (103 loc) 3.33 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 { ToolActionDescription } from "./ToolActionDescription"; import { markType } from "./type"; /** * @hidden */ export let ToolActionCheckboxDescription = /*@__PURE__*/ (() => { class ToolActionCheckboxDescription extends ToolActionDescription { get_type() { return "ToolActionCheckbox"; } constructor() { super(); this.d2 = false; this.ea = null; this.eb = null; this.d6 = null; this.d8 = null; this.d4 = null; this.ec = null; this.d7 = null; this.d9 = null; this.d5 = null; } get isChecked() { return this.d2; } set isChecked(a) { this.d2 = a; this.j("IsChecked"); } get shorthandTitle() { return this.ea; } set shorthandTitle(a) { this.ea = a; this.j("ShorthandTitle"); } get uncheckedBackgroundColor() { return this.eb; } set uncheckedBackgroundColor(a) { this.eb = a; this.j("UncheckedBackgroundColor"); } get actualUncheckedBackgroundColor() { return this.d6; } set actualUncheckedBackgroundColor(a) { this.d6 = a; this.j("ActualUncheckedBackgroundColor"); } get checkedBackgroundColor() { return this.d8; } set checkedBackgroundColor(a) { this.d8 = a; this.j("CheckedBackgroundColor"); } get actualCheckedBackgroundColor() { return this.d4; } set actualCheckedBackgroundColor(a) { this.d4 = a; this.j("ActualCheckedBackgroundColor"); } get uncheckedBorderColor() { return this.ec; } set uncheckedBorderColor(a) { this.ec = a; this.j("UncheckedBorderColor"); } get actualUncheckedBorderColor() { return this.d7; } set actualUncheckedBorderColor(a) { this.d7 = a; this.j("ActualUncheckedBorderColor"); } get checkedBorderColor() { return this.d9; } set checkedBorderColor(a) { this.d9 = a; this.j("CheckedBorderColor"); } get actualCheckedBorderColor() { return this.d5; } set actualCheckedBorderColor(a) { this.d5 = a; this.j("ActualCheckedBorderColor"); } } ToolActionCheckboxDescription.$t = /*@__PURE__*/ markType(ToolActionCheckboxDescription, 'ToolActionCheckboxDescription', ToolActionDescription.$); return ToolActionCheckboxDescription; })();