UNPKG

igniteui-react-core

Version:
62 lines (61 loc) 2.33 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 { ToolActionIconButtonDescription } from "./ToolActionIconButtonDescription"; import { markType } from "./type"; /** * @hidden */ var ToolActionIconMenuDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionIconMenuDescription, _super); function ToolActionIconMenuDescription() { var _this = _super.call(this) || this; _this.ek = null; _this.ej = null; _this.eh = false; return _this; } ToolActionIconMenuDescription.prototype.get_type = function () { return "ToolActionIconMenu"; }; Object.defineProperty(ToolActionIconMenuDescription.prototype, "arrowStroke", { get: function () { return this.ek; }, set: function (a) { this.ek = a; this.g("ArrowStroke"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionIconMenuDescription.prototype, "actualArrowStroke", { get: function () { return this.ej; }, set: function (a) { this.ej = a; this.g("ActualArrowStroke"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionIconMenuDescription.prototype, "showArrowIcon", { get: function () { return this.eh; }, set: function (a) { this.eh = a; this.g("ShowArrowIcon"); }, enumerable: false, configurable: true }); ToolActionIconMenuDescription.$t = markType(ToolActionIconMenuDescription, 'ToolActionIconMenuDescription', ToolActionIconButtonDescription.$); return ToolActionIconMenuDescription; }(ToolActionIconButtonDescription)); export { ToolActionIconMenuDescription };