igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
83 lines (82 loc) • 3.39 kB
JavaScript
/*
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 LabelVisualModelExport = /*@__PURE__*/ (() => {
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;
}
q() {
let a = new StringBuilder(0);
a.l("{");
a.l("baseTheme : " + this.c + ", ");
a.l("density : " + this.e + ", ");
a.l("actualDensity : " + this.d + ", ");
a.l("actualTextColor : " + this.a.serialize() + ", ");
if (!stringIsNullOrEmpty(this.u)) {
a.l("textStyleFontStyle : \"" + this.u + "\", ");
}
if (!stringIsNullOrEmpty(this.v)) {
a.l("textStyleFontVariant : \"" + this.v + "\", ");
}
if (!stringIsNullOrEmpty(this.w)) {
a.l("textStyleFontWeight : \"" + this.w + "\", ");
}
if (!stringIsNullOrEmpty(this.s)) {
a.l("textStyleFontFamily : \"" + this.s + "\", ");
}
if (!stringIsNullOrEmpty(this.t)) {
a.l("textStyleFontStretch : \"" + this.t + "\", ");
}
if (!isNaN_(this.k)) {
a.l("textStyleFontSize : " + this.k + ", ");
}
a.l("shiftType : " + this.b + ", ");
a.l("isShifted : " + this.i + ", ");
a.l("isHighlighted : " + this.g + ", ");
a.l("display : \"" + this.m + "\", ");
a.l("flexDirection : \"" + this.n + "\", ");
a.l("flexGrow : \"" + this.o + "\", ");
a.l("alignItems :\"" + this.l + "\", ");
a.l("text : \"" + this.r + "\", ");
a.l("isHover : " + this.h + ", ");
a.l("value : " + this.j + ", ");
a.l("isDisabled : " + this.f + ", ");
a.l("name : \"" + this.p + "\", ");
a.l("}");
return a.toString();
}
}
LabelVisualModelExport.$t = /*@__PURE__*/ markType(LabelVisualModelExport, 'LabelVisualModelExport');
return LabelVisualModelExport;
})();
export { LabelVisualModelExport };