UNPKG

igniteui-react-core

Version:
48 lines (47 loc) 1.73 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 { ToolActionIconButtonDescription } from "./ToolActionIconButtonDescription"; import { markType } from "./type"; /** * @hidden */ export let ToolActionIconMenuDescription = /*@__PURE__*/ (() => { class ToolActionIconMenuDescription extends ToolActionIconButtonDescription { get_type() { return "ToolActionIconMenu"; } constructor() { super(); this.er = null; this.eq = null; this.eo = false; } get arrowStroke() { return this.er; } set arrowStroke(a) { this.er = a; this.j("ArrowStroke"); } get actualArrowStroke() { return this.eq; } set actualArrowStroke(a) { this.eq = a; this.j("ActualArrowStroke"); } get showArrowIcon() { return this.eo; } set showArrowIcon(a) { this.eo = a; this.j("ShowArrowIcon"); } } ToolActionIconMenuDescription.$t = /*@__PURE__*/ markType(ToolActionIconMenuDescription, 'ToolActionIconMenuDescription', ToolActionIconButtonDescription.$); return ToolActionIconMenuDescription; })();