UNPKG

igniteui-react-core

Version:
37 lines (36 loc) 1.55 kB
/* 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 ToolActionSubPanelInfo = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionSubPanelInfo, _super); function ToolActionSubPanelInfo() { var _this = _super.apply(this, __spreadArray([], __read(arguments), false)) || this; _this._itemSpacing = 0; return _this; } ToolActionSubPanelInfo.prototype.get_d = function () { return 10; }; Object.defineProperty(ToolActionSubPanelInfo.prototype, "itemSpacing", { get: function () { return this._itemSpacing; }, set: function (a) { this._itemSpacing = a; }, enumerable: false, configurable: true }); ToolActionSubPanelInfo.$t = markType(ToolActionSubPanelInfo, 'ToolActionSubPanelInfo', ToolActionInfo.$); return ToolActionSubPanelInfo; }(ToolActionInfo)); export { ToolActionSubPanelInfo };