UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

99 lines (98 loc) 2.77 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebButtonBaseDescription = /*@__PURE__*/ (() => { class WebButtonBaseDescription extends Description { constructor() { super(); this.o = null; this.r = null; this.p = null; this.t = null; this.s = null; this.k = false; this.n = null; this.q = null; this.m = null; } get_type() { return "WebButtonBase"; } get type() { return this.get_type(); } get displayType() { return this.o; } set displayType(a) { this.o = a; this.j("DisplayType"); } get href() { return this.r; } set href(a) { this.r = a; this.j("Href"); } get download() { return this.p; } set download(a) { this.p = a; this.j("Download"); } get target() { return this.t; } set target(a) { this.t = a; this.j("Target"); } get rel() { return this.s; } set rel(a) { this.s = a; this.j("Rel"); } get disabled() { return this.k; } set disabled(a) { this.k = a; this.j("Disabled"); } get clickedRef() { return this.n; } set clickedRef(a) { this.n = a; this.j("ClickedRef"); } get focusRef() { return this.q; } set focusRef(a) { this.q = a; this.j("FocusRef"); } get blurRef() { return this.m; } set blurRef(a) { this.m = a; this.j("BlurRef"); } } WebButtonBaseDescription.$t = markType(WebButtonBaseDescription, 'WebButtonBaseDescription', Description.$); return WebButtonBaseDescription; })();