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 PrefixDescription = /*@__PURE__*/ (() => { class PrefixDescription extends InputGroupItemDescription { constructor() { super(); this.n = null; this.m = null; this.j = false; this.i = false; } get_type() { return "Prefix"; } get id() { return this.n; } set id(a) { this.n = a; this.e("Id"); } get ariaLabel() { return this.m; } set ariaLabel(a) { this.m = a; this.e("AriaLabel"); } get isHover() { return this.j; } set isHover(a) { this.j = a; this.e("IsHover"); } get disabled() { return this.i; } set disabled(a) { this.i = a; this.e("Disabled"); } } PrefixDescription.$t = markType(PrefixDescription, 'PrefixDescription', InputGroupItemDescription.$); return PrefixDescription; })();