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