UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

112 lines (111 loc) 3.57 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 { constructor() { super(); this.ed = 0; this.ec = 0; this.d1 = 0; this.dx = 0; this.d3 = 0; this.dz = 0; this.d2 = 0; this.dy = 0; this.d0 = 0; this.dw = 0; this.eg = null; } get_type() { return "ToolActionIconButton"; } get tooltipDelay() { return this.ed; } set tooltipDelay(a) { this.ed = a; this.j("TooltipDelay"); } get actualTooltipDelay() { return this.ec; } set actualTooltipDelay(a) { this.ec = a; this.j("ActualTooltipDelay"); } get contentPaddingLeft() { return this.d1; } set contentPaddingLeft(a) { this.d1 = a; this.j("ContentPaddingLeft"); } get actualContentPaddingLeft() { return this.dx; } set actualContentPaddingLeft(a) { this.dx = a; this.j("ActualContentPaddingLeft"); } get contentPaddingTop() { return this.d3; } set contentPaddingTop(a) { this.d3 = a; this.j("ContentPaddingTop"); } get actualContentPaddingTop() { return this.dz; } set actualContentPaddingTop(a) { this.dz = a; this.j("ActualContentPaddingTop"); } get contentPaddingRight() { return this.d2; } set contentPaddingRight(a) { this.d2 = a; this.j("ContentPaddingRight"); } get actualContentPaddingRight() { return this.dy; } set actualContentPaddingRight(a) { this.dy = a; this.j("ActualContentPaddingRight"); } get contentPaddingBottom() { return this.d0; } set contentPaddingBottom(a) { this.d0 = a; this.j("ContentPaddingBottom"); } get actualContentPaddingBottom() { return this.dw; } set actualContentPaddingBottom(a) { this.dw = a; this.j("ActualContentPaddingBottom"); } get popupOpeningRef() { return this.eg; } set popupOpeningRef(a) { this.eg = a; this.j("PopupOpeningRef"); } } ToolActionIconButtonDescription.$t = markType(ToolActionIconButtonDescription, 'ToolActionIconButtonDescription', ToolActionDescription.$); return ToolActionIconButtonDescription; })();