igniteui-react-core
Version:
Ignite UI React Core.
48 lines (47 loc) • 1.94 kB
JavaScript
/*
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, __read, __spreadArray } from "tslib";
import { ToolActionInfo } from "./ToolActionInfo";
import { markType } from "./type";
/**
* @hidden
*/
var ToolActionRadioGroupInfo = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionRadioGroupInfo, _super);
function ToolActionRadioGroupInfo() {
var _this = _super.apply(this, __spreadArray([], __read(arguments), false)) || this;
_this._selectedTextStyle = null;
_this._selectedTextColor = null;
return _this;
}
ToolActionRadioGroupInfo.prototype.get_d = function () {
return 17;
};
Object.defineProperty(ToolActionRadioGroupInfo.prototype, "selectedTextStyle", {
get: function () {
return this._selectedTextStyle;
},
set: function (a) {
this._selectedTextStyle = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioGroupInfo.prototype, "selectedTextColor", {
get: function () {
return this._selectedTextColor;
},
set: function (a) {
this._selectedTextColor = a;
},
enumerable: false,
configurable: true
});
ToolActionRadioGroupInfo.$t = markType(ToolActionRadioGroupInfo, 'ToolActionRadioGroupInfo', ToolActionInfo.$);
return ToolActionRadioGroupInfo;
}(ToolActionInfo));
export { ToolActionRadioGroupInfo };