UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

267 lines (266 loc) 7 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 WebComboDescription = /*@__PURE__*/ (() => { class WebComboDescription extends Description { constructor() { super(); this.ao = null; this.v = false; this.x = false; this.o = false; this.p = false; this.av = null; this.ay = null; this.az = null; this.u = false; this.a0 = null; this.ap = null; this.as = null; this.at = null; this.m = null; this.q = false; this.s = false; this.k = null; this.r = false; this.w = false; this.ai = null; this.t = false; this.au = null; this.ar = null; this.al = null; this.aq = null; this.ak = null; this.ax = null; this.aw = null; this.an = null; this.am = null; } get_type() { return "WebCombo"; } get type() { return this.get_type(); } get dataRef() { return this.ao; } set dataRef(a) { this.ao = a; this.j("DataRef"); } get outlined() { return this.v; } set outlined(a) { this.v = a; this.j("Outlined"); } get singleSelect() { return this.x; } set singleSelect(a) { this.x = a; this.j("SingleSelect"); } get autofocus() { return this.o; } set autofocus(a) { this.o = a; this.j("Autofocus"); } get autofocusList() { return this.p; } set autofocusList(a) { this.p = a; this.j("AutofocusList"); } get label() { return this.av; } set label(a) { this.av = a; this.j("Label"); } get placeholder() { return this.ay; } set placeholder(a) { this.ay = a; this.j("Placeholder"); } get placeholderSearch() { return this.az; } set placeholderSearch(a) { this.az = a; this.j("PlaceholderSearch"); } get open() { return this.u; } set open(a) { this.u = a; this.j("Open"); } get valueKey() { return this.a0; } set valueKey(a) { this.a0 = a; this.j("ValueKey"); } get displayKey() { return this.ap; } set displayKey(a) { this.ap = a; this.j("DisplayKey"); } get groupKey() { return this.as; } set groupKey(a) { this.as = a; this.j("GroupKey"); } get groupSorting() { return this.at; } set groupSorting(a) { this.at = a; this.j("GroupSorting"); } get filteringOptions() { return this.m; } set filteringOptions(a) { this.m = a; this.j("FilteringOptions"); } get caseSensitiveIcon() { return this.q; } set caseSensitiveIcon(a) { this.q = a; this.j("CaseSensitiveIcon"); } get disableFiltering() { return this.s; } set disableFiltering(a) { this.s = a; this.j("DisableFiltering"); } get value() { return this.k; } set value(a) { this.k = a; this.j("Value"); } get disabled() { return this.r; } set disabled(a) { this.r = a; this.j("Disabled"); } get required() { return this.w; } set required(a) { this.w = a; this.j("Required"); } get defaultValue() { return this.ai; } set defaultValue(a) { this.ai = a; this.j("DefaultValue"); } get invalid() { return this.t; } set invalid(a) { this.t = a; this.j("Invalid"); } get itemTemplateRef() { return this.au; } set itemTemplateRef(a) { this.au = a; this.j("ItemTemplateRef"); } get groupHeaderTemplateRef() { return this.ar; } set groupHeaderTemplateRef(a) { this.ar = a; this.j("GroupHeaderTemplateRef"); } get changeRef() { return this.al; } set changeRef(a) { this.al = a; this.j("ChangeRef"); } get focusRef() { return this.aq; } set focusRef(a) { this.aq = a; this.j("FocusRef"); } get blurRef() { return this.ak; } set blurRef(a) { this.ak = a; this.j("BlurRef"); } get openingRef() { return this.ax; } set openingRef(a) { this.ax = a; this.j("OpeningRef"); } get openedRef() { return this.aw; } set openedRef(a) { this.aw = a; this.j("OpenedRef"); } get closingRef() { return this.an; } set closingRef(a) { this.an = a; this.j("ClosingRef"); } get closedRef() { return this.am; } set closedRef(a) { this.am = a; this.j("ClosedRef"); } } WebComboDescription.$t = markType(WebComboDescription, 'WebComboDescription', Description.$); return WebComboDescription; })();