UNPKG

igniteui-react-core

Version:
112 lines (111 loc) 3.48 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 { ToolActionDescription } from "./ToolActionDescription"; import { markType } from "./type"; /** * @hidden */ export let ToolActionIconButtonDescription = /*@__PURE__*/ (() => { class ToolActionIconButtonDescription extends ToolActionDescription { get_type() { return "ToolActionIconButton"; } constructor() { super(); this.ec = 0; this.eb = 0; this.d0 = 0; this.dw = 0; this.d2 = 0; this.dy = 0; this.d1 = 0; this.dx = 0; this.dz = 0; this.dv = 0; this.ef = null; } get tooltipDelay() { return this.ec; } set tooltipDelay(a) { this.ec = a; this.g("TooltipDelay"); } get actualTooltipDelay() { return this.eb; } set actualTooltipDelay(a) { this.eb = a; this.g("ActualTooltipDelay"); } get contentPaddingLeft() { return this.d0; } set contentPaddingLeft(a) { this.d0 = a; this.g("ContentPaddingLeft"); } get actualContentPaddingLeft() { return this.dw; } set actualContentPaddingLeft(a) { this.dw = a; this.g("ActualContentPaddingLeft"); } get contentPaddingTop() { return this.d2; } set contentPaddingTop(a) { this.d2 = a; this.g("ContentPaddingTop"); } get actualContentPaddingTop() { return this.dy; } set actualContentPaddingTop(a) { this.dy = a; this.g("ActualContentPaddingTop"); } get contentPaddingRight() { return this.d1; } set contentPaddingRight(a) { this.d1 = a; this.g("ContentPaddingRight"); } get actualContentPaddingRight() { return this.dx; } set actualContentPaddingRight(a) { this.dx = a; this.g("ActualContentPaddingRight"); } get contentPaddingBottom() { return this.dz; } set contentPaddingBottom(a) { this.dz = a; this.g("ContentPaddingBottom"); } get actualContentPaddingBottom() { return this.dv; } set actualContentPaddingBottom(a) { this.dv = a; this.g("ActualContentPaddingBottom"); } get popupOpeningRef() { return this.ef; } set popupOpeningRef(a) { this.ef = a; this.g("PopupOpeningRef"); } } ToolActionIconButtonDescription.$t = /*@__PURE__*/ markType(ToolActionIconButtonDescription, 'ToolActionIconButtonDescription', ToolActionDescription.$); return ToolActionIconButtonDescription; })();