igniteui-react-core
Version:
Ignite UI React Core.
50 lines (49 loc) • 2 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 } from "tslib";
import { ToolActionDescription } from "./ToolActionDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ToolActionGroupHeaderDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionGroupHeaderDescription, _super);
function ToolActionGroupHeaderDescription() {
var _this = _super.call(this) || this;
_this.dv = null;
_this.dw = null;
return _this;
}
ToolActionGroupHeaderDescription.prototype.get_type = function () {
return "ToolActionGroupHeader";
};
Object.defineProperty(ToolActionGroupHeaderDescription.prototype, "actualBackIconColor", {
get: function () {
return this.dv;
},
set: function (a) {
this.dv = a;
this.g("ActualBackIconColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionGroupHeaderDescription.prototype, "backIconColor", {
get: function () {
return this.dw;
},
set: function (a) {
this.dw = a;
this.g("BackIconColor");
},
enumerable: false,
configurable: true
});
ToolActionGroupHeaderDescription.$t = markType(ToolActionGroupHeaderDescription, 'ToolActionGroupHeaderDescription', ToolActionDescription.$);
return ToolActionGroupHeaderDescription;
}(ToolActionDescription));
export { ToolActionGroupHeaderDescription };