UNPKG

igniteui-react-core

Version:
98 lines (97 loc) 3.4 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 { __extends } from "tslib"; import { ToolActionDescription } from "./ToolActionDescription"; import { markType } from "./type"; /** * @hidden */ var ToolActionRadioGroupDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionRadioGroupDescription, _super); function ToolActionRadioGroupDescription() { var _this = _super.call(this) || this; _this.d5 = null; _this.d2 = 0; _this.d6 = null; _this.d7 = null; _this.d8 = null; _this.d4 = null; return _this; } ToolActionRadioGroupDescription.prototype.get_type = function () { return "ToolActionRadioGroup"; }; Object.defineProperty(ToolActionRadioGroupDescription.prototype, "selectedFontFamily", { get: function () { return this.d5; }, set: function (a) { this.d5 = a; this.j("SelectedFontFamily"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionRadioGroupDescription.prototype, "selectedFontSize", { get: function () { return this.d2; }, set: function (a) { this.d2 = a; this.j("SelectedFontSize"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionRadioGroupDescription.prototype, "selectedFontStyle", { get: function () { return this.d6; }, set: function (a) { this.d6 = a; this.j("SelectedFontStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionRadioGroupDescription.prototype, "selectedFontWeight", { get: function () { return this.d7; }, set: function (a) { this.d7 = a; this.j("SelectedFontWeight"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionRadioGroupDescription.prototype, "selectedTextColor", { get: function () { return this.d8; }, set: function (a) { this.d8 = a; this.j("SelectedTextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionRadioGroupDescription.prototype, "actualSelectedTextColor", { get: function () { return this.d4; }, set: function (a) { this.d4 = a; this.j("ActualSelectedTextColor"); }, enumerable: false, configurable: true }); ToolActionRadioGroupDescription.$t = markType(ToolActionRadioGroupDescription, 'ToolActionRadioGroupDescription', ToolActionDescription.$); return ToolActionRadioGroupDescription; }(ToolActionDescription)); export { ToolActionRadioGroupDescription };