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.at = null; this.ao = null; this.ap = null; this.as = null; this.ad = false; this.ah = 0; this.ag = 0; this.ar = null; this.aq = null; this.ai = 0; this.ac = false; this.am = null; this.an = null; } get_type() { return "WebInput"; } get value() { return this.at; } set value(a) { this.at = a; this.e("Value"); } get displayType() { return this.ao; } set displayType(a) { this.ao = a; this.e("DisplayType"); } get inputmode() { return this.ap; } set inputmode(a) { this.ap = a; this.e("Inputmode"); } get pattern() { return this.as; } set pattern(a) { this.as = a; this.e("Pattern"); } get invalid() { return this.ad; } set invalid(a) { this.ad = a; this.e("Invalid"); } get minlength() { return this.ah; } set minlength(a) { this.ah = a; this.e("Minlength"); } get maxlength() { return this.ag; } set maxlength(a) { this.ag = a; this.e("Maxlength"); } get min() { return this.ar; } set min(a) { this.ar = a; this.e("Min"); } get max() { return this.aq; } set max(a) { this.aq = a; this.e("Max"); } get step() { return this.ai; } set step(a) { this.ai = a; this.e("Step"); } get autofocus() { return this.ac; } set autofocus(a) { this.ac = a; this.e("Autofocus"); } get autocomplete() { return this.am; } set autocomplete(a) { this.am = a; this.e("Autocomplete"); } get changeRef() { return this.an; } set changeRef(a) { this.an = a; this.e("ChangeRef"); } } WebInputDescription.$t = markType(WebInputDescription, 'WebInputDescription', WebInputBaseDescription.$); return WebInputDescription; })();