UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

62 lines (61 loc) 2.39 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.el = null; _this.ek = null; _this.ei = false; return _this; } ToolActionIconMenuDescription.prototype.get_type = function () { return "ToolActionIconMenu"; }; Object.defineProperty(ToolActionIconMenuDescription.prototype, "arrowStroke", { get: function () { return this.el; }, set: function (a) { this.el = a; this.j("ArrowStroke"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionIconMenuDescription.prototype, "actualArrowStroke", { get: function () { return this.ek; }, set: function (a) { this.ek = a; this.j("ActualArrowStroke"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionIconMenuDescription.prototype, "showArrowIcon", { get: function () { return this.ei; }, set: function (a) { this.ei = a; this.j("ShowArrowIcon"); }, enumerable: false, configurable: true }); ToolActionIconMenuDescription.$t = markType(ToolActionIconMenuDescription, 'ToolActionIconMenuDescription', ToolActionIconButtonDescription.$); return ToolActionIconMenuDescription; }(ToolActionIconButtonDescription)); export { ToolActionIconMenuDescription };