UNPKG

igniteui-react-core

Version:
72 lines (71 loc) 2.38 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 ToolActionRadioGroupDescription = /*@__PURE__*/ (() => { class ToolActionRadioGroupDescription extends ToolActionDescription { get_type() { return "ToolActionRadioGroup"; } constructor() { super(); this.d5 = null; this.d2 = 0; this.d6 = null; this.d7 = null; this.d8 = null; this.d4 = null; } get selectedFontFamily() { return this.d5; } set selectedFontFamily(a) { this.d5 = a; this.j("SelectedFontFamily"); } get selectedFontSize() { return this.d2; } set selectedFontSize(a) { this.d2 = a; this.j("SelectedFontSize"); } get selectedFontStyle() { return this.d6; } set selectedFontStyle(a) { this.d6 = a; this.j("SelectedFontStyle"); } get selectedFontWeight() { return this.d7; } set selectedFontWeight(a) { this.d7 = a; this.j("SelectedFontWeight"); } get selectedTextColor() { return this.d8; } set selectedTextColor(a) { this.d8 = a; this.j("SelectedTextColor"); } get actualSelectedTextColor() { return this.d4; } set actualSelectedTextColor(a) { this.d4 = a; this.j("ActualSelectedTextColor"); } } ToolActionRadioGroupDescription.$t = /*@__PURE__*/ markType(ToolActionRadioGroupDescription, 'ToolActionRadioGroupDescription', ToolActionDescription.$); return ToolActionRadioGroupDescription; })();