UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

146 lines (145 loc) 5.18 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 { GeographicMapSeriesHostDescription } from "./GeographicMapSeriesHostDescription"; import { markType } from "./type"; /** * @hidden */ var GeographicShapeSeriesBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GeographicShapeSeriesBaseDescription, _super); function GeographicShapeSeriesBaseDescription() { var _this = _super.call(this) || this; _this.dn = null; _this.db = false; _this.da = false; _this.dm = null; _this.dh = 0; _this.dg = 0; _this.c8 = null; _this.de = 0; _this.dl = null; _this.dk = null; return _this; } GeographicShapeSeriesBaseDescription.prototype.get_type = function () { return "GeographicShapeSeriesBase"; }; Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "shapeMemberPath", { get: function () { return this.dn; }, set: function (a) { this.dn = a; this.e("ShapeMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "isCustomShapeStyleAllowed", { get: function () { return this.db; }, set: function (a) { this.db = a; this.e("IsCustomShapeStyleAllowed"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "isCustomShapeMarkerStyleAllowed", { get: function () { return this.da; }, set: function (a) { this.da = a; this.e("IsCustomShapeMarkerStyleAllowed"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "itemSearchMode", { get: function () { return this.dm; }, set: function (a) { this.dm = a; this.e("ItemSearchMode"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "itemSearchThreshold", { get: function () { return this.dh; }, set: function (a) { this.dh = a; this.e("ItemSearchThreshold"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "itemSearchPointsThreshold", { get: function () { return this.dg; }, set: function (a) { this.dg = a; this.e("ItemSearchPointsThreshold"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "shapefileDataSource", { get: function () { return this.c8; }, set: function (a) { this.c8 = a; this.e("ShapefileDataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "shapeFilterResolution", { get: function () { return this.de; }, set: function (a) { this.de = a; this.e("ShapeFilterResolution"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "assigningShapeStyleRef", { get: function () { return this.dl; }, set: function (a) { this.dl = a; this.e("AssigningShapeStyleRef"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "assigningShapeMarkerStyleRef", { get: function () { return this.dk; }, set: function (a) { this.dk = a; this.e("AssigningShapeMarkerStyleRef"); }, enumerable: false, configurable: true }); GeographicShapeSeriesBaseDescription.$t = markType(GeographicShapeSeriesBaseDescription, 'GeographicShapeSeriesBaseDescription', GeographicMapSeriesHostDescription.$); return GeographicShapeSeriesBaseDescription; }(GeographicMapSeriesHostDescription)); export { GeographicShapeSeriesBaseDescription };