UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

176 lines (175 loc) 4.74 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 { WebBaseComboBoxLikeDescription } from "./WebBaseComboBoxLikeDescription"; import { markType } from "./type"; /** * @hidden */ export let WebSelectDescription = /*@__PURE__*/ (() => { class WebSelectDescription extends WebBaseComboBoxLikeDescription { constructor() { super(); this.as = null; this.w = false; this.t = false; this.ad = 0; this.am = null; this.ap = null; this.aq = null; this.ar = null; this.u = false; this.x = false; this.af = null; this.v = false; this.ai = null; this.al = null; this.ah = null; this.ao = null; this.an = null; this.ak = null; this.aj = null; } get_type() { return "WebSelect"; } get value() { return this.as; } set value(a) { this.as = a; this.j("Value"); } get outlined() { return this.w; } set outlined(a) { this.w = a; this.j("Outlined"); } get autofocus() { return this.t; } set autofocus(a) { this.t = a; this.j("Autofocus"); } get distance() { return this.ad; } set distance(a) { this.ad = a; this.j("Distance"); } get label() { return this.am; } set label(a) { this.am = a; this.j("Label"); } get placeholder() { return this.ap; } set placeholder(a) { this.ap = a; this.j("Placeholder"); } get placement() { return this.aq; } set placement(a) { this.aq = a; this.j("Placement"); } get scrollStrategy() { return this.ar; } set scrollStrategy(a) { this.ar = a; this.j("ScrollStrategy"); } get disabled() { return this.u; } set disabled(a) { this.u = a; this.j("Disabled"); } get required() { return this.x; } set required(a) { this.x = a; this.j("Required"); } get defaultValue() { return this.af; } set defaultValue(a) { this.af = a; this.j("DefaultValue"); } get invalid() { return this.v; } set invalid(a) { this.v = a; this.j("Invalid"); } get changeRef() { return this.ai; } set changeRef(a) { this.ai = a; this.j("ChangeRef"); } get focusRef() { return this.al; } set focusRef(a) { this.al = a; this.j("FocusRef"); } get blurRef() { return this.ah; } set blurRef(a) { this.ah = a; this.j("BlurRef"); } get openingRef() { return this.ao; } set openingRef(a) { this.ao = a; this.j("OpeningRef"); } get openedRef() { return this.an; } set openedRef(a) { this.an = a; this.j("OpenedRef"); } get closingRef() { return this.ak; } set closingRef(a) { this.ak = a; this.j("ClosingRef"); } get closedRef() { return this.aj; } set closedRef(a) { this.aj = a; this.j("ClosedRef"); } } WebSelectDescription.$t = markType(WebSelectDescription, 'WebSelectDescription', WebBaseComboBoxLikeDescription.$); return WebSelectDescription; })();