UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

248 lines (247 loc) 6.62 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 LabelDescription = /*@__PURE__*/ (() => { class LabelDescription extends InputGroupItemDescription { constructor() { super(); this.ad = null; this.ae = null; this.v = null; this.z = null; this.w = null; this.x = null; this.y = null; this.ar = null; this.am = null; this.an = null; this.ai = null; this.r = 0; this.aj = null; this.ak = null; this.ao = null; this.ap = null; this.af = null; this.ag = null; this.ah = null; this.aa = null; this.ab = null; this.t = 0; this.al = null; this.ac = null; this.aq = null; this.m = false; this.n = false; this.l = false; } get_type() { return "Label"; } get baseTheme() { return this.ad; } set baseTheme(a) { this.ad = a; this.j("BaseTheme"); } get density() { return this.ae; } set density(a) { this.ae = a; this.j("Density"); } get actualDensity() { return this.v; } set actualDensity(a) { this.v = a; this.j("ActualDensity"); } get actualTextColor() { return this.z; } set actualTextColor(a) { this.z = a; this.j("ActualTextColor"); } get actualHighlightTextColor() { return this.w; } set actualHighlightTextColor(a) { this.w = a; this.j("ActualHighlightTextColor"); } get actualHoverHighlightTextColor() { return this.x; } set actualHoverHighlightTextColor(a) { this.x = a; this.j("ActualHoverHighlightTextColor"); } get actualHoverTextColor() { return this.y; } set actualHoverTextColor(a) { this.y = a; this.j("ActualHoverTextColor"); } get textColor() { return this.ar; } set textColor(a) { this.ar = a; this.j("TextColor"); } get highlightTextColor() { return this.am; } set highlightTextColor(a) { this.am = a; this.j("HighlightTextColor"); } get hoverHighlightTextColor() { return this.an; } set hoverHighlightTextColor(a) { this.an = a; this.j("HoverHighlightTextColor"); } get fontFamily() { return this.ai; } set fontFamily(a) { this.ai = a; this.j("FontFamily"); } get fontSize() { return this.r; } set fontSize(a) { this.r = a; this.j("FontSize"); } get fontStyle() { return this.aj; } set fontStyle(a) { this.aj = a; this.j("FontStyle"); } get fontWeight() { return this.ak; } set fontWeight(a) { this.ak = a; this.j("FontWeight"); } get hoverTextColor() { return this.ao; } set hoverTextColor(a) { this.ao = a; this.j("HoverTextColor"); } get id() { return this.ap; } set id(a) { this.ap = a; this.j("Id"); } get display() { return this.af; } set display(a) { this.af = a; this.j("Display"); } get flexDirection() { return this.ag; } set flexDirection(a) { this.ag = a; this.j("FlexDirection"); } get flexGrow() { return this.ah; } set flexGrow(a) { this.ah = a; this.j("FlexGrow"); } get alignItems() { return this.aa; } set alignItems(a) { this.aa = a; this.j("AlignItems"); } get alignSelf() { return this.ab; } set alignSelf(a) { this.ab = a; this.j("AlignSelf"); } get tabIndex() { return this.t; } set tabIndex(a) { this.t = a; this.j("TabIndex"); } get $for() { return this.al; } set $for(a) { this.al = a; this.j("For"); } get ariaLabel() { return this.ac; } set ariaLabel(a) { this.ac = a; this.j("AriaLabel"); } get text() { return this.aq; } set text(a) { this.aq = a; this.j("Text"); } get isHover() { return this.m; } set isHover(a) { this.m = a; this.j("IsHover"); } get value() { return this.n; } set value(a) { this.n = a; this.j("Value"); } get disabled() { return this.l; } set disabled(a) { this.l = a; this.j("Disabled"); } } LabelDescription.$t = markType(LabelDescription, 'LabelDescription', InputGroupItemDescription.$); return LabelDescription; })();