UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

235 lines (234 loc) 6.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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let IconDescription = /*@__PURE__*/ (() => { class IconDescription extends Description { constructor() { super(); this.x = null; this.ab = null; this.y = null; this.z = null; this.aa = null; this.j = 0; this.k = 0; this.ad = null; this.an = null; this.am = null; this.ah = null; this.ai = null; this.al = null; this.m = 0; this.o = 0; this.ae = null; this.l = 0; this.af = null; this.ag = null; this.aj = null; this.ak = null; this.v = 0; this.ac = null; this.g = false; this.f = false; this.n = 0; } get_type() { return "Icon"; } get type() { return this.get_type(); } get actualFill() { return this.x; } set actualFill(a) { this.x = a; this.e("ActualFill"); } get actualTextColor() { return this.ab; } set actualTextColor(a) { this.ab = a; this.e("ActualTextColor"); } get actualHoverFill() { return this.y; } set actualHoverFill(a) { this.y = a; this.e("ActualHoverFill"); } get actualHoverStroke() { return this.z; } set actualHoverStroke(a) { this.z = a; this.e("ActualHoverStroke"); } get actualStroke() { return this.aa; } set actualStroke(a) { this.aa = a; this.e("ActualStroke"); } get actualHoverStrokeThickness() { return this.j; } set actualHoverStrokeThickness(a) { this.j = a; this.e("ActualHoverStrokeThickness"); } get actualStrokeThickness() { return this.k; } set actualStrokeThickness(a) { this.k = a; this.e("ActualStrokeThickness"); } get fill() { return this.ad; } set fill(a) { this.ad = a; this.e("Fill"); } get textColor() { return this.an; } set textColor(a) { this.an = a; this.e("TextColor"); } get svgPath() { return this.am; } set svgPath(a) { this.am = a; this.e("SvgPath"); } get hoverFill() { return this.ah; } set hoverFill(a) { this.ah = a; this.e("HoverFill"); } get hoverStroke() { return this.ai; } set hoverStroke(a) { this.ai = a; this.e("HoverStroke"); } get stroke() { return this.al; } set stroke(a) { this.al = a; this.e("Stroke"); } get hoverStrokeThickness() { return this.m; } set hoverStrokeThickness(a) { this.m = a; this.e("HoverStrokeThickness"); } get strokeThickness() { return this.o; } set strokeThickness(a) { this.o = a; this.e("StrokeThickness"); } get fontFamily() { return this.ae; } set fontFamily(a) { this.ae = a; this.e("FontFamily"); } get fontSize() { return this.l; } set fontSize(a) { this.l = a; this.e("FontSize"); } get fontStyle() { return this.af; } set fontStyle(a) { this.af = a; this.e("FontStyle"); } get fontWeight() { return this.ag; } set fontWeight(a) { this.ag = a; this.e("FontWeight"); } get hoverTextColor() { return this.aj; } set hoverTextColor(a) { this.aj = a; this.e("HoverTextColor"); } get id() { return this.ak; } set id(a) { this.ak = a; this.e("Id"); } get tabIndex() { return this.v; } set tabIndex(a) { this.v = a; this.e("TabIndex"); } get ariaLabel() { return this.ac; } set ariaLabel(a) { this.ac = a; this.e("AriaLabel"); } get isHover() { return this.g; } set isHover(a) { this.g = a; this.e("IsHover"); } get disabled() { return this.f; } set disabled(a) { this.f = a; this.e("Disabled"); } get opacity() { return this.n; } set opacity(a) { this.n = a; this.e("Opacity"); } } IconDescription.$t = markType(IconDescription, 'IconDescription', Description.$); return IconDescription; })();