UNPKG

igniteui-angular-inputs

Version:

Ignite UI Angular input components for building rich data visualizations for modern web apps.

82 lines (81 loc) 2.98 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-angular-core"; import { StringBuilder } from "igniteui-angular-core"; import { stringIsNullOrEmpty } from "igniteui-angular-core"; import { isNaN_ } from "igniteui-angular-core"; /** * @hidden */ export class LabelVisualModelExport extends Base { constructor() { super(...arguments); this.c = 0; this.e = 0; this.d = 0; this.a = null; this.u = null; this.v = null; this.w = null; this.k = 0; this.s = null; this.t = null; this.b = 0; this.i = false; this.g = false; this.m = null; this.n = null; this.o = null; this.l = null; this.r = null; this.h = false; this.j = false; this.f = false; this.p = null; } static { this.$t = markType(LabelVisualModelExport, 'LabelVisualModelExport'); } q() { let a = new StringBuilder(0); a.m("{"); a.m("baseTheme : " + this.c + ", "); a.m("density : " + this.e + ", "); a.m("actualDensity : " + this.d + ", "); a.m("actualTextColor : " + this.a.serialize() + ", "); if (!stringIsNullOrEmpty(this.u)) { a.m("textStyleFontStyle : \"" + this.u + "\", "); } if (!stringIsNullOrEmpty(this.v)) { a.m("textStyleFontVariant : \"" + this.v + "\", "); } if (!stringIsNullOrEmpty(this.w)) { a.m("textStyleFontWeight : \"" + this.w + "\", "); } if (!stringIsNullOrEmpty(this.s)) { a.m("textStyleFontFamily : \"" + this.s + "\", "); } if (!stringIsNullOrEmpty(this.t)) { a.m("textStyleFontStretch : \"" + this.t + "\", "); } if (!isNaN_(this.k)) { a.m("textStyleFontSize : " + this.k + ", "); } a.m("shiftType : " + this.b + ", "); a.m("isShifted : " + this.i + ", "); a.m("isHighlighted : " + this.g + ", "); a.m("display : \"" + this.m + "\", "); a.m("flexDirection : \"" + this.n + "\", "); a.m("flexGrow : \"" + this.o + "\", "); a.m("alignItems :\"" + this.l + "\", "); a.m("text : \"" + this.r + "\", "); a.m("isHover : " + this.h + ", "); a.m("value : " + this.j + ", "); a.m("isDisabled : " + this.f + ", "); a.m("name : \"" + this.p + "\", "); a.m("}"); return a.toString(); } }