| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- /*!
- * devextreme-angular
- * Version: 19.1.16
- * Build date: Tue Oct 18 2022
- *
- * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
- *
- * This software may be modified and distributed under the terms
- * of the MIT license. See the LICENSE file in the root of the project for details.
- *
- * https://github.com/DevExpress/devextreme-angular
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- var core_1 = require("@angular/core");
- var nested_option_1 = require("../../core/nested-option");
- var nested_option_2 = require("../../core/nested-option");
- var DxiLayerComponent = (function (_super) {
- __extends(DxiLayerComponent, _super);
- function DxiLayerComponent(parentOptionHost, optionHost) {
- var _this = _super.call(this) || this;
- parentOptionHost.setNestedOption(_this);
- optionHost.setHost(_this, _this._fullOptionPath.bind(_this));
- return _this;
- }
- Object.defineProperty(DxiLayerComponent.prototype, "borderColor", {
- get: function () {
- return this._getOption('borderColor');
- },
- set: function (value) {
- this._setOption('borderColor', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "borderWidth", {
- get: function () {
- return this._getOption('borderWidth');
- },
- set: function (value) {
- this._setOption('borderWidth', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "color", {
- get: function () {
- return this._getOption('color');
- },
- set: function (value) {
- this._setOption('color', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "colorGroupingField", {
- get: function () {
- return this._getOption('colorGroupingField');
- },
- set: function (value) {
- this._setOption('colorGroupingField', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "colorGroups", {
- get: function () {
- return this._getOption('colorGroups');
- },
- set: function (value) {
- this._setOption('colorGroups', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "customize", {
- get: function () {
- return this._getOption('customize');
- },
- set: function (value) {
- this._setOption('customize', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "dataField", {
- get: function () {
- return this._getOption('dataField');
- },
- set: function (value) {
- this._setOption('dataField', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "dataSource", {
- get: function () {
- return this._getOption('dataSource');
- },
- set: function (value) {
- this._setOption('dataSource', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "elementType", {
- get: function () {
- return this._getOption('elementType');
- },
- set: function (value) {
- this._setOption('elementType', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "hoveredBorderColor", {
- get: function () {
- return this._getOption('hoveredBorderColor');
- },
- set: function (value) {
- this._setOption('hoveredBorderColor', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "hoveredBorderWidth", {
- get: function () {
- return this._getOption('hoveredBorderWidth');
- },
- set: function (value) {
- this._setOption('hoveredBorderWidth', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "hoveredColor", {
- get: function () {
- return this._getOption('hoveredColor');
- },
- set: function (value) {
- this._setOption('hoveredColor', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "hoverEnabled", {
- get: function () {
- return this._getOption('hoverEnabled');
- },
- set: function (value) {
- this._setOption('hoverEnabled', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "label", {
- get: function () {
- return this._getOption('label');
- },
- set: function (value) {
- this._setOption('label', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "maxSize", {
- get: function () {
- return this._getOption('maxSize');
- },
- set: function (value) {
- this._setOption('maxSize', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "minSize", {
- get: function () {
- return this._getOption('minSize');
- },
- set: function (value) {
- this._setOption('minSize', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "name", {
- get: function () {
- return this._getOption('name');
- },
- set: function (value) {
- this._setOption('name', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "opacity", {
- get: function () {
- return this._getOption('opacity');
- },
- set: function (value) {
- this._setOption('opacity', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "palette", {
- get: function () {
- return this._getOption('palette');
- },
- set: function (value) {
- this._setOption('palette', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "paletteSize", {
- get: function () {
- return this._getOption('paletteSize');
- },
- set: function (value) {
- this._setOption('paletteSize', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "selectedBorderColor", {
- get: function () {
- return this._getOption('selectedBorderColor');
- },
- set: function (value) {
- this._setOption('selectedBorderColor', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "selectedBorderWidth", {
- get: function () {
- return this._getOption('selectedBorderWidth');
- },
- set: function (value) {
- this._setOption('selectedBorderWidth', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "selectedColor", {
- get: function () {
- return this._getOption('selectedColor');
- },
- set: function (value) {
- this._setOption('selectedColor', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "selectionMode", {
- get: function () {
- return this._getOption('selectionMode');
- },
- set: function (value) {
- this._setOption('selectionMode', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "size", {
- get: function () {
- return this._getOption('size');
- },
- set: function (value) {
- this._setOption('size', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "sizeGroupingField", {
- get: function () {
- return this._getOption('sizeGroupingField');
- },
- set: function (value) {
- this._setOption('sizeGroupingField', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "sizeGroups", {
- get: function () {
- return this._getOption('sizeGroups');
- },
- set: function (value) {
- this._setOption('sizeGroups', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "type", {
- get: function () {
- return this._getOption('type');
- },
- set: function (value) {
- this._setOption('type', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiLayerComponent.prototype, "_optionPath", {
- get: function () {
- return 'layers';
- },
- enumerable: true,
- configurable: true
- });
- DxiLayerComponent.decorators = [
- { type: core_1.Component, args: [{
- selector: 'dxi-layer',
- template: '',
- styles: [''],
- providers: [nested_option_1.NestedOptionHost]
- },] },
- ];
- /** @nocollapse */
- DxiLayerComponent.ctorParameters = function () { return [
- { type: nested_option_1.NestedOptionHost, decorators: [{ type: core_1.SkipSelf }, { type: core_1.Host },] },
- { type: nested_option_1.NestedOptionHost, decorators: [{ type: core_1.Host },] },
- ]; };
- DxiLayerComponent.propDecorators = {
- "borderColor": [{ type: core_1.Input },],
- "borderWidth": [{ type: core_1.Input },],
- "color": [{ type: core_1.Input },],
- "colorGroupingField": [{ type: core_1.Input },],
- "colorGroups": [{ type: core_1.Input },],
- "customize": [{ type: core_1.Input },],
- "dataField": [{ type: core_1.Input },],
- "dataSource": [{ type: core_1.Input },],
- "elementType": [{ type: core_1.Input },],
- "hoveredBorderColor": [{ type: core_1.Input },],
- "hoveredBorderWidth": [{ type: core_1.Input },],
- "hoveredColor": [{ type: core_1.Input },],
- "hoverEnabled": [{ type: core_1.Input },],
- "label": [{ type: core_1.Input },],
- "maxSize": [{ type: core_1.Input },],
- "minSize": [{ type: core_1.Input },],
- "name": [{ type: core_1.Input },],
- "opacity": [{ type: core_1.Input },],
- "palette": [{ type: core_1.Input },],
- "paletteSize": [{ type: core_1.Input },],
- "selectedBorderColor": [{ type: core_1.Input },],
- "selectedBorderWidth": [{ type: core_1.Input },],
- "selectedColor": [{ type: core_1.Input },],
- "selectionMode": [{ type: core_1.Input },],
- "size": [{ type: core_1.Input },],
- "sizeGroupingField": [{ type: core_1.Input },],
- "sizeGroups": [{ type: core_1.Input },],
- "type": [{ type: core_1.Input },],
- };
- return DxiLayerComponent;
- }(nested_option_2.CollectionNestedOption));
- exports.DxiLayerComponent = DxiLayerComponent;
- var DxiLayerModule = (function () {
- function DxiLayerModule() {
- }
- DxiLayerModule.decorators = [
- { type: core_1.NgModule, args: [{
- declarations: [
- DxiLayerComponent
- ],
- exports: [
- DxiLayerComponent
- ],
- },] },
- ];
- return DxiLayerModule;
- }());
- exports.DxiLayerModule = DxiLayerModule;
- //# sourceMappingURL=layer-dxi.js.map
|