UNPKG

igniteui-react-core

Version:
52 lines (51 loc) 2.21 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 { ToolActionInfoDescription } from "./ToolActionInfoDescription"; import { markType } from "./type"; /** * @hidden */ var ToolActionRadioGroupInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionRadioGroupInfoDescription, _super); function ToolActionRadioGroupInfoDescription() { var _this = _super.call(this) || this; _this.bq = null; _this.bp = null; return _this; } ToolActionRadioGroupInfoDescription.prototype.get_type = function () { return "ToolActionRadioGroupInfo"; }; Object.defineProperty(ToolActionRadioGroupInfoDescription.prototype, "selectedTextStyle", { get: function () { return this.bq; }, set: function (a) { this.bq = a; this.j("SelectedTextStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionRadioGroupInfoDescription.prototype, "selectedTextColor", { get: function () { return this.bp; }, set: function (a) { this.bp = a; this.j("SelectedTextColor"); }, enumerable: false, configurable: true }); ToolActionRadioGroupInfoDescription.$t = markType(ToolActionRadioGroupInfoDescription, 'ToolActionRadioGroupInfoDescription', ToolActionInfoDescription.$); ToolActionRadioGroupInfoDescription.__marshalByValue1 = true; ToolActionRadioGroupInfoDescription.__marshalByValueAlias1 = "ToolActionRadioGroupInfo"; return ToolActionRadioGroupInfoDescription; }(ToolActionInfoDescription)); export { ToolActionRadioGroupInfoDescription };