UNPKG

igniteui-react-core

Version:
120 lines (119 loc) 3.67 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 ToolActionRadioDescription = /*@__PURE__*/ (() => { class ToolActionRadioDescription extends ToolActionDescription { get_type() { return "ToolActionRadio"; } constructor() { super(); this.ea = null; this.ed = null; this.d2 = false; this.d3 = false; this.ee = null; this.d8 = null; this.eb = null; this.d6 = null; this.ef = null; this.d9 = null; this.ec = null; this.d7 = null; } get channel() { return this.ea; } set channel(a) { this.ea = a; this.j("Channel"); } get shorthandTitle() { return this.ed; } set shorthandTitle(a) { this.ed = a; this.j("ShorthandTitle"); } get isChecked() { return this.d2; } set isChecked(a) { this.d2 = a; this.j("IsChecked"); } get isManual() { return this.d3; } set isManual(a) { this.d3 = a; this.j("IsManual"); } get uncheckedBackgroundColor() { return this.ee; } set uncheckedBackgroundColor(a) { this.ee = a; this.j("UncheckedBackgroundColor"); } get actualUncheckedBackgroundColor() { return this.d8; } set actualUncheckedBackgroundColor(a) { this.d8 = a; this.j("ActualUncheckedBackgroundColor"); } get checkedBackgroundColor() { return this.eb; } set checkedBackgroundColor(a) { this.eb = a; this.j("CheckedBackgroundColor"); } get actualCheckedBackgroundColor() { return this.d6; } set actualCheckedBackgroundColor(a) { this.d6 = a; this.j("ActualCheckedBackgroundColor"); } get uncheckedBorderColor() { return this.ef; } set uncheckedBorderColor(a) { this.ef = a; this.j("UncheckedBorderColor"); } get actualUncheckedBorderColor() { return this.d9; } set actualUncheckedBorderColor(a) { this.d9 = a; this.j("ActualUncheckedBorderColor"); } get checkedBorderColor() { return this.ec; } set checkedBorderColor(a) { this.ec = a; this.j("CheckedBorderColor"); } get actualCheckedBorderColor() { return this.d7; } set actualCheckedBorderColor(a) { this.d7 = a; this.j("ActualCheckedBorderColor"); } } ToolActionRadioDescription.$t = /*@__PURE__*/ markType(ToolActionRadioDescription, 'ToolActionRadioDescription', ToolActionDescription.$); return ToolActionRadioDescription; })();