UNPKG

igniteui-react-core

Version:
38 lines (37 loc) 1.56 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 } from "tslib"; import { ToolActionIconButtonInfo } from "./ToolActionIconButtonInfo"; import { markType } from "./type"; /** * @hidden */ var ToolActionIconMenuInfo = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionIconMenuInfo, _super); function ToolActionIconMenuInfo() { var _this = _super.call(this) || this; _this._showArrowIcon = false; _this.showArrowIcon = true; return _this; } Object.defineProperty(ToolActionIconMenuInfo.prototype, "showArrowIcon", { get: function () { return this._showArrowIcon; }, set: function (a) { this._showArrowIcon = a; }, enumerable: false, configurable: true }); ToolActionIconMenuInfo.prototype.get_d = function () { return 8; }; ToolActionIconMenuInfo.$t = markType(ToolActionIconMenuInfo, 'ToolActionIconMenuInfo', ToolActionIconButtonInfo.$); return ToolActionIconMenuInfo; }(ToolActionIconButtonInfo)); export { ToolActionIconMenuInfo };