UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

56 lines (55 loc) 1.76 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 { InputGroupItemDescription } from "./InputGroupItemDescription"; import { markType } from "./type"; /** * @hidden */ export let SuffixDescription = /*@__PURE__*/ (() => { class SuffixDescription extends InputGroupItemDescription { constructor() { super(); this.q = null; this.p = null; this.m = false; this.l = false; } get_type() { return "Suffix"; } get id() { return this.q; } set id(a) { this.q = a; this.j("Id"); } get ariaLabel() { return this.p; } set ariaLabel(a) { this.p = a; this.j("AriaLabel"); } get isHover() { return this.m; } set isHover(a) { this.m = a; this.j("IsHover"); } get disabled() { return this.l; } set disabled(a) { this.l = a; this.j("Disabled"); } } SuffixDescription.$t = markType(SuffixDescription, 'SuffixDescription', InputGroupItemDescription.$); return SuffixDescription; })();