UNPKG

igniteui-webcomponents-inputs

Version:

Ignite UI Web Components inputs components.

79 lines (78 loc) 3.2 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 { Base, markType } from "igniteui-webcomponents-core"; import { StringBuilder } from "igniteui-webcomponents-core"; import { stringIsNullOrEmpty } from "igniteui-webcomponents-core"; import { isNaN_ } from "igniteui-webcomponents-core"; let InputVisualModelExport = /*@__PURE__*/ (() => { class InputVisualModelExport extends Base { constructor() { super(...arguments); this.i = 0; this.g = 0; this.j = 0; this.f = 0; this.b = 0; this.c = 0; this.l = null; this.o = null; this.d = false; this.a = null; this.s = null; this.t = null; this.u = null; this.h = 0; this.q = null; this.r = null; this.k = null; this.n = null; this.e = false; this.v = null; this.m = null; } p() { let a = new StringBuilder(0); a.l("{"); a.l("top : " + this.i + ", "); a.l("left : " + this.g + ", "); a.l("shiftType : " + this.b + ", "); a.l("actualDensity : " + this.c + ", "); a.l("mask : \"" + this.l + "\", "); a.l("promptChar : \"" + this.o + "\", "); a.l("includeLiterals : " + this.d + ", "); a.l("actualTextColor : " + this.a.serialize() + ", "); if (!stringIsNullOrEmpty(this.s)) { a.l("textStyleFontStyle : \"" + this.s + "\", "); } if (!stringIsNullOrEmpty(this.t)) { a.l("textStyleFontVariant : \"" + this.t + "\", "); } if (!stringIsNullOrEmpty(this.u)) { a.l("textStyleFontWeight : \"" + this.u + "\", "); } if (!stringIsNullOrEmpty(this.q)) { a.l("textStyleFontFamily : \"" + this.q + "\", "); } if (!stringIsNullOrEmpty(this.r)) { a.l("textStyleFontStretch : \"" + this.r + "\", "); } if (!isNaN_(this.h)) { a.l("textStyleFontSize : " + this.h + ", "); } a.l("inputType : \"" + this.k + "\", "); a.l("placeholder : \"" + this.n + "\", "); a.l("isHover : " + this.e + ", "); a.l("value : \"" + this.v + "\", "); a.l("name : \"" + this.m + "\", "); a.l("}"); return a.toString(); } } InputVisualModelExport.$t = /*@__PURE__*/ markType(InputVisualModelExport, 'InputVisualModelExport'); return InputVisualModelExport; })(); export { InputVisualModelExport };