UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

296 lines (295 loc) 7.71 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 { InputGroupItemDescription } from "./InputGroupItemDescription"; import { markType } from "./type"; /** * @hidden */ export let InputDescription = /*@__PURE__*/ (() => { class InputDescription extends InputGroupItemDescription { constructor() { super(); this.ah = null; this.al = null; this.ad = null; this.aw = null; this.ay = null; this.m = false; this.p = false; this.af = null; this.ae = null; this.a0 = null; this.am = null; this.v = 0; this.an = null; this.ao = null; this.as = null; this.ax = null; this.aq = null; this.ar = null; this.z = 0; this.ap = null; this.ag = null; this.n = false; this.a1 = null; this.l = false; this.o = false; this.az = null; this.y = 0; this.x = 0; this.at = null; this.av = null; this.au = null; this.ai = null; this.aj = null; this.ak = null; } get_type() { return "Input"; } get baseTheme() { return this.ah; } set baseTheme(a) { this.ah = a; this.j("BaseTheme"); } get density() { return this.al; } set density(a) { this.al = a; this.j("Density"); } get actualDensity() { return this.ad; } set actualDensity(a) { this.ad = a; this.j("ActualDensity"); } get mask() { return this.aw; } set mask(a) { this.aw = a; this.j("Mask"); } get promptChar() { return this.ay; } set promptChar(a) { this.ay = a; this.j("PromptChar"); } get includeLiterals() { return this.m; } set includeLiterals(a) { this.m = a; this.j("IncludeLiterals"); } get showSpinner() { return this.p; } set showSpinner(a) { this.p = a; this.j("ShowSpinner"); } get actualTextColor() { return this.af; } set actualTextColor(a) { this.af = a; this.j("ActualTextColor"); } get actualHoverTextColor() { return this.ae; } set actualHoverTextColor(a) { this.ae = a; this.j("ActualHoverTextColor"); } get textColor() { return this.a0; } set textColor(a) { this.a0 = a; this.j("TextColor"); } get fontFamily() { return this.am; } set fontFamily(a) { this.am = a; this.j("FontFamily"); } get fontSize() { return this.v; } set fontSize(a) { this.v = a; this.j("FontSize"); } get fontStyle() { return this.an; } set fontStyle(a) { this.an = a; this.j("FontStyle"); } get fontWeight() { return this.ao; } set fontWeight(a) { this.ao = a; this.j("FontWeight"); } get inputType() { return this.as; } set inputType(a) { this.as = a; this.j("InputType"); } get placeholder() { return this.ax; } set placeholder(a) { this.ax = a; this.j("Placeholder"); } get hoverTextColor() { return this.aq; } set hoverTextColor(a) { this.aq = a; this.j("HoverTextColor"); } get id() { return this.ar; } set id(a) { this.ar = a; this.j("Id"); } get tabIndex() { return this.z; } set tabIndex(a) { this.z = a; this.j("TabIndex"); } get $for() { return this.ap; } set $for(a) { this.ap = a; this.j("For"); } get ariaLabel() { return this.ag; } set ariaLabel(a) { this.ag = a; this.j("AriaLabel"); } get isHover() { return this.n; } set isHover(a) { this.n = a; this.j("IsHover"); } get value() { return this.a1; } set value(a) { this.a1 = a; this.j("Value"); } get disabled() { return this.l; } set disabled(a) { this.l = a; this.j("Disabled"); } get readonly() { return this.o; } set readonly(a) { this.o = a; this.j("Readonly"); } get textAlignment() { return this.az; } set textAlignment(a) { this.az = a; this.j("TextAlignment"); } get selectionStart() { return this.y; } set selectionStart(a) { this.y = a; this.j("SelectionStart"); } get selectionEnd() { return this.x; } set selectionEnd(a) { this.x = a; this.j("SelectionEnd"); } get keyDownRef() { return this.at; } set keyDownRef(a) { this.at = a; this.j("KeyDownRef"); } get keyUpRef() { return this.av; } set keyUpRef(a) { this.av = a; this.j("KeyUpRef"); } get keyPressRef() { return this.au; } set keyPressRef(a) { this.au = a; this.j("KeyPressRef"); } get changeRef() { return this.ai; } set changeRef(a) { this.ai = a; this.j("ChangeRef"); } get changingRef() { return this.aj; } set changingRef(a) { this.aj = a; this.j("ChangingRef"); } get compositionEndRef() { return this.ak; } set compositionEndRef(a) { this.ak = a; this.j("CompositionEndRef"); } } InputDescription.$t = markType(InputDescription, 'InputDescription', InputGroupItemDescription.$); return InputDescription; })();