UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

263 lines (262 loc) 8.25 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var UserBaseAnnotationDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(UserBaseAnnotationDescription, _super); function UserBaseAnnotationDescription() { var _this = _super.call(this) || this; _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; return _this; } UserBaseAnnotationDescription.prototype.get_type = function () { return "UserBaseAnnotation"; }; Object.defineProperty(UserBaseAnnotationDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "identifier", { get: function () { return this.ak; }, set: function (a) { this.ak = a; this.j("Identifier"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "label", { get: function () { return this.al; }, set: function (a) { this.al = a; this.j("Label"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "annotationData", { get: function () { return this.ag; }, set: function (a) { this.ag = a; this.j("AnnotationData"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "isVisible", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("IsVisible"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "labelColor", { get: function () { return this.ao; }, set: function (a) { this.ao = a; this.j("LabelColor"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "labelBackground", { get: function () { return this.am; }, set: function (a) { this.am = a; this.j("LabelBackground"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "labelBorderColor", { get: function () { return this.an; }, set: function (a) { this.an = a; this.j("LabelBorderColor"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "labelBorderThickness", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("LabelBorderThickness"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "labelBorderRadius", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("LabelBorderRadius"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "labelPadding", { get: function () { return this.x; }, set: function (a) { this.x = a; this.j("LabelPadding"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "badgeVisible", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("BadgeVisible"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "badgeBackground", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.j("BadgeBackground"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "badgeOutline", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.j("BadgeOutline"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "badgeThickness", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("BadgeThickness"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "badgeSize", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("BadgeSize"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "badgeCornerRadius", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("BadgeCornerRadius"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "badgeMargin", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("BadgeMargin"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "badgeImagePath", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.j("BadgeImagePath"); }, enumerable: false, configurable: true }); Object.defineProperty(UserBaseAnnotationDescription.prototype, "isPillShaped", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("IsPillShaped"); }, enumerable: false, configurable: true }); UserBaseAnnotationDescription.$t = markType(UserBaseAnnotationDescription, 'UserBaseAnnotationDescription', Description.$); UserBaseAnnotationDescription.__marshalByValue = true; UserBaseAnnotationDescription.__marshalByValueAlias = "UserBaseAnnotation"; return UserBaseAnnotationDescription; }(Description)); export { UserBaseAnnotationDescription };