UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

211 lines (210 loc) 5.49 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 WebTextareaDescription = /*@__PURE__*/ (() => { class WebTextareaDescription extends Description { constructor() { super(); this.ah = null; this.ag = null; this.am = null; this.an = null; this.y = 0; this.z = 0; this.m = false; this.ao = null; this.n = false; this.ap = null; this.aa = 0; this.aq = null; this.p = false; this.ar = null; this.q = false; this.k = false; this.o = false; this.ae = null; this.l = false; this.al = null; this.aj = null; this.ak = null; this.ai = null; } get_type() { return "WebTextarea"; } get type() { return this.get_type(); } get autocomplete() { return this.ah; } set autocomplete(a) { this.ah = a; this.j("Autocomplete"); } get autocapitalize() { return this.ag; } set autocapitalize(a) { this.ag = a; this.j("Autocapitalize"); } get inputMode() { return this.am; } set inputMode(a) { this.am = a; this.j("InputMode"); } get label() { return this.an; } set label(a) { this.an = a; this.j("Label"); } get maxLength() { return this.y; } set maxLength(a) { this.y = a; this.j("MaxLength"); } get minLength() { return this.z; } set minLength(a) { this.z = a; this.j("MinLength"); } get outlined() { return this.m; } set outlined(a) { this.m = a; this.j("Outlined"); } get placeholder() { return this.ao; } set placeholder(a) { this.ao = a; this.j("Placeholder"); } get readOnly() { return this.n; } set readOnly(a) { this.n = a; this.j("ReadOnly"); } get resize() { return this.ap; } set resize(a) { this.ap = a; this.j("Resize"); } get rows() { return this.aa; } set rows(a) { this.aa = a; this.j("Rows"); } get value() { return this.aq; } set value(a) { this.aq = a; this.j("Value"); } get spellcheck() { return this.p; } set spellcheck(a) { this.p = a; this.j("Spellcheck"); } get wrap() { return this.ar; } set wrap(a) { this.ar = a; this.j("Wrap"); } get validateOnly() { return this.q; } set validateOnly(a) { this.q = a; this.j("ValidateOnly"); } get disabled() { return this.k; } set disabled(a) { this.k = a; this.j("Disabled"); } get required() { return this.o; } set required(a) { this.o = a; this.j("Required"); } get defaultValue() { return this.ae; } set defaultValue(a) { this.ae = a; this.j("DefaultValue"); } get invalid() { return this.l; } set invalid(a) { this.l = a; this.j("Invalid"); } get inputRef() { return this.al; } set inputRef(a) { this.al = a; this.j("InputRef"); } get changeRef() { return this.aj; } set changeRef(a) { this.aj = a; this.j("ChangeRef"); } get focusRef() { return this.ak; } set focusRef(a) { this.ak = a; this.j("FocusRef"); } get blurRef() { return this.ai; } set blurRef(a) { this.ai = a; this.j("BlurRef"); } } WebTextareaDescription.$t = markType(WebTextareaDescription, 'WebTextareaDescription', Description.$); return WebTextareaDescription; })();