igniteui-react-core
Version:
Ignite UI React Core.
50 lines (49 loc) • 1.91 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 { ToolActionInfo } from "./ToolActionInfo";
import { DeviceUtils } from "./DeviceUtils";
import { markType } from "./type";
/**
* @hidden
*/
var ToolActionSeparatorInfo = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionSeparatorInfo, _super);
function ToolActionSeparatorInfo() {
var _this = _super.call(this) || this;
_this._size = 0;
_this._isGroupHeaderSeparator = false;
_this.size = DeviceUtils.g(2);
return _this;
}
ToolActionSeparatorInfo.prototype.get_d = function () {
return 7;
};
Object.defineProperty(ToolActionSeparatorInfo.prototype, "size", {
get: function () {
return this._size;
},
set: function (a) {
this._size = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionSeparatorInfo.prototype, "isGroupHeaderSeparator", {
get: function () {
return this._isGroupHeaderSeparator;
},
set: function (a) {
this._isGroupHeaderSeparator = a;
},
enumerable: false,
configurable: true
});
ToolActionSeparatorInfo.$t = markType(ToolActionSeparatorInfo, 'ToolActionSeparatorInfo', ToolActionInfo.$);
return ToolActionSeparatorInfo;
}(ToolActionInfo));
export { ToolActionSeparatorInfo };