UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

181 lines (180 loc) 5.14 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 UserBaseAnnotationDescription = /*@__PURE__*/ (() => { class UserBaseAnnotationDescription extends Description { constructor() { super(); this.ak = null; this.al = null; this.ag = null; this.n = false; this.ao = null; this.am = null; this.an = null; this.w = 0; this.v = 0; this.x = 0; this.l = false; this.ah = null; this.aj = null; this.u = 0; this.t = 0; this.r = 0; this.s = 0; this.ai = null; this.m = false; } get_type() { return "UserBaseAnnotation"; } get type() { return this.get_type(); } get identifier() { return this.ak; } set identifier(a) { this.ak = a; this.j("Identifier"); } get label() { return this.al; } set label(a) { this.al = a; this.j("Label"); } get annotationData() { return this.ag; } set annotationData(a) { this.ag = a; this.j("AnnotationData"); } get isVisible() { return this.n; } set isVisible(a) { this.n = a; this.j("IsVisible"); } get labelColor() { return this.ao; } set labelColor(a) { this.ao = a; this.j("LabelColor"); } get labelBackground() { return this.am; } set labelBackground(a) { this.am = a; this.j("LabelBackground"); } get labelBorderColor() { return this.an; } set labelBorderColor(a) { this.an = a; this.j("LabelBorderColor"); } get labelBorderThickness() { return this.w; } set labelBorderThickness(a) { this.w = a; this.j("LabelBorderThickness"); } get labelBorderRadius() { return this.v; } set labelBorderRadius(a) { this.v = a; this.j("LabelBorderRadius"); } get labelPadding() { return this.x; } set labelPadding(a) { this.x = a; this.j("LabelPadding"); } get badgeVisible() { return this.l; } set badgeVisible(a) { this.l = a; this.j("BadgeVisible"); } get badgeBackground() { return this.ah; } set badgeBackground(a) { this.ah = a; this.j("BadgeBackground"); } get badgeOutline() { return this.aj; } set badgeOutline(a) { this.aj = a; this.j("BadgeOutline"); } get badgeThickness() { return this.u; } set badgeThickness(a) { this.u = a; this.j("BadgeThickness"); } get badgeSize() { return this.t; } set badgeSize(a) { this.t = a; this.j("BadgeSize"); } get badgeCornerRadius() { return this.r; } set badgeCornerRadius(a) { this.r = a; this.j("BadgeCornerRadius"); } get badgeMargin() { return this.s; } set badgeMargin(a) { this.s = a; this.j("BadgeMargin"); } get badgeImagePath() { return this.ai; } set badgeImagePath(a) { this.ai = a; this.j("BadgeImagePath"); } get isPillShaped() { return this.m; } set isPillShaped(a) { this.m = a; this.j("IsPillShaped"); } } UserBaseAnnotationDescription.$t = markType(UserBaseAnnotationDescription, 'UserBaseAnnotationDescription', Description.$); UserBaseAnnotationDescription.__marshalByValue = true; UserBaseAnnotationDescription.__marshalByValueAlias = "UserBaseAnnotation"; return UserBaseAnnotationDescription; })();