UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

115 lines (114 loc) 3.19 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 WebInputBaseDescription = /*@__PURE__*/ (() => { class WebInputBaseDescription extends Description { constructor() { super(); this.m = false; this.n = false; this.aa = null; this.z = null; this.k = false; this.o = false; this.u = null; this.l = false; this.y = null; this.x = null; this.w = null; } get_type() { return "WebInputBase"; } get type() { return this.get_type(); } get outlined() { return this.m; } set outlined(a) { this.m = a; this.j("Outlined"); } get readOnly() { return this.n; } set readOnly(a) { this.n = a; this.j("ReadOnly"); } get placeholder() { return this.aa; } set placeholder(a) { this.aa = a; this.j("Placeholder"); } get label() { return this.z; } set label(a) { this.z = a; this.j("Label"); } 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.u; } set defaultValue(a) { this.u = a; this.j("DefaultValue"); } get invalid() { return this.l; } set invalid(a) { this.l = a; this.j("Invalid"); } get inputOcurredRef() { return this.y; } set inputOcurredRef(a) { this.y = a; this.j("InputOcurredRef"); } get focusRef() { return this.x; } set focusRef(a) { this.x = a; this.j("FocusRef"); } get blurRef() { return this.w; } set blurRef(a) { this.w = a; this.j("BlurRef"); } } WebInputBaseDescription.$t = markType(WebInputBaseDescription, 'WebInputBaseDescription', Description.$); return WebInputBaseDescription; })();