igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
50 lines (49 loc) • 2.01 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 ToolActionSeparatorDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionSeparatorDescription, _super);
function ToolActionSeparatorDescription() {
var _this = _super.call(this) || this;
_this.dx = 0;
_this.dv = false;
return _this;
}
ToolActionSeparatorDescription.prototype.get_type = function () {
return "ToolActionSeparator";
};
Object.defineProperty(ToolActionSeparatorDescription.prototype, "size", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.g("Size");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionSeparatorDescription.prototype, "isGroupHeaderSeparator", {
get: function () {
return this.dv;
},
set: function (a) {
this.dv = a;
this.g("IsGroupHeaderSeparator");
},
enumerable: false,
configurable: true
});
ToolActionSeparatorDescription.$t = markType(ToolActionSeparatorDescription, 'ToolActionSeparatorDescription', ToolActionDescription.$);
return ToolActionSeparatorDescription;
}(ToolActionDescription));
export { ToolActionSeparatorDescription };