UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

128 lines (127 loc) 3.5 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 { WebInputBaseDescription } from "./WebInputBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let WebInputDescription = /*@__PURE__*/ (() => { class WebInputDescription extends WebInputBaseDescription { constructor() { super(); this.az = null; this.aw = null; this.ax = null; this.ay = null; this.an = 0; this.al = 0; this.am = 0; this.ak = 0; this.ao = 0; this.ag = false; this.au = null; this.ah = false; this.av = null; } get_type() { return "WebInput"; } get value() { return this.az; } set value(a) { this.az = a; this.g("Value"); } get displayType() { return this.aw; } set displayType(a) { this.aw = a; this.g("DisplayType"); } get inputMode() { return this.ax; } set inputMode(a) { this.ax = a; this.g("InputMode"); } get pattern() { return this.ay; } set pattern(a) { this.ay = a; this.g("Pattern"); } get minLength() { return this.an; } set minLength(a) { this.an = a; this.g("MinLength"); } get maxLength() { return this.al; } set maxLength(a) { this.al = a; this.g("MaxLength"); } get min() { return this.am; } set min(a) { this.am = a; this.g("Min"); } get max() { return this.ak; } set max(a) { this.ak = a; this.g("Max"); } get step() { return this.ao; } set step(a) { this.ao = a; this.g("Step"); } get autofocus() { return this.ag; } set autofocus(a) { this.ag = a; this.g("Autofocus"); } get autocomplete() { return this.au; } set autocomplete(a) { this.au = a; this.g("Autocomplete"); } get validateOnly() { return this.ah; } set validateOnly(a) { this.ah = a; this.g("ValidateOnly"); } get changeRef() { return this.av; } set changeRef(a) { this.av = a; this.g("ChangeRef"); } } WebInputDescription.$t = markType(WebInputDescription, 'WebInputDescription', WebInputBaseDescription.$); return WebInputDescription; })();